mirror of
https://github.com/Websoft9/websoft9.git
synced 2025-01-24 10:17:15 +08:00
23 lines
385 B
YAML
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:
|