2023-03-31 08:25:18 +08:00
|
|
|
version: "3.8"
|
|
|
|
|
|
|
|
services:
|
|
|
|
appmanage:
|
|
|
|
image: websoft9dev/appmanage:${APP_VERSION}
|
|
|
|
container_name: ${APP_NAME}
|
|
|
|
pid: host
|
|
|
|
privileged: true
|
|
|
|
restart: unless-stopped
|
|
|
|
volumes:
|
2023-08-17 16:05:24 +08:00
|
|
|
- appmanage-logs:/usr/src/app/logs
|
|
|
|
- appmanage-db:/usr/src/app/db
|
2023-08-24 11:51:24 +08:00
|
|
|
- appmanage-config:/usr/src/app/config
|
2023-04-04 09:50:08 +08:00
|
|
|
entrypoint: bash -c "/cmd.sh"
|
2023-03-31 08:25:18 +08:00
|
|
|
|
|
|
|
networks:
|
|
|
|
default:
|
|
|
|
name: ${APP_NETWORK}
|
|
|
|
external: true
|
|
|
|
|
|
|
|
volumes:
|
2023-08-17 16:05:24 +08:00
|
|
|
appmanage-logs:
|
|
|
|
appmanage-db:
|
2023-08-24 11:51:24 +08:00
|
|
|
appmanage-config:
|