websoft9/docker/w9appmanage/docker-compose.yml
2023-08-03 16:30:49 +08:00

23 lines
390 B
YAML

version: "3.8"
services:
appmanage:
image: websoft9dev/appmanage:${APP_VERSION}
container_name: ${APP_NAME}
pid: host
privileged: true
restart: unless-stopped
volumes:
- appmanage:/usr/src/app
entrypoint: bash -c "/cmd.sh"
ports:
- ${APP_HTTP_PORT}:5000
networks:
default:
name: ${APP_NETWORK}
external: true
volumes:
appmanage: