0.0.5 • Published 1 year ago

self-hosted-app-compose v0.0.5

Weekly downloads
-
License
ISC
Repository
-
Last release
1 year ago

self hosted app management

easy way to manage your self hosted server base on docker and docker-compose.

Usage

npm i -g self-hosted-app-compose

create your first app:

app-compose create --name mongo --root-dir ./apps

example config:

version: "3.4"

services:
  mongo_container:
    container_name: mongo_service
    image: mongo
    labels:
      - homepage.show=true
    environment:
      NODE_ENV: production
    ports:
      - 3201:27017

remove app:

app-compose remove --name mongo --root-dir ./apps

for the complete command list:

app-compose --help