websoft9/docker/appmanage/docker-compose.yml
2023-04-04 09:50:08 +08:00

23 lines
385 B
YAML

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