mirror of
https://github.com/Websoft9/websoft9.git
synced 2025-01-25 02:38:42 +08:00
25 lines
482 B
YAML
25 lines
482 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-logs:/usr/src/app/logs
|
|
- appmanage-db:/usr/src/app/db
|
|
- appmanage-config:/usr/src/app/config
|
|
entrypoint: bash -c "/cmd.sh"
|
|
|
|
networks:
|
|
default:
|
|
name: ${APP_NETWORK}
|
|
external: true
|
|
|
|
volumes:
|
|
appmanage-logs:
|
|
appmanage-db:
|
|
appmanage-config:
|