2023-03-31 08:25:18 +08:00
|
|
|
version: "3.8"
|
|
|
|
|
|
|
|
services:
|
2023-09-15 18:54:50 +08:00
|
|
|
apphub:
|
|
|
|
image: websoft9dev/apphub${APP_VERSION}
|
2023-03-31 08:25:18 +08:00
|
|
|
container_name: ${APP_NAME}
|
|
|
|
pid: host
|
|
|
|
privileged: true
|
2023-09-18 17:13:15 +08:00
|
|
|
restart: always
|
2023-03-31 08:25:18 +08:00
|
|
|
volumes:
|
2023-09-15 18:54:50 +08:00
|
|
|
- apphub-logs:/usr/src/app/logs
|
|
|
|
- apphub-db:/usr/src/app/db
|
|
|
|
- apphub-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-09-15 18:54:50 +08:00
|
|
|
apphub-logs:
|
|
|
|
apphub-db:
|
|
|
|
apphub-config:
|