mirror of
https://github.com/Websoft9/websoft9.git
synced 2025-01-24 10:17:15 +08:00
25 lines
457 B
YAML
25 lines
457 B
YAML
version: "3.8"
|
|
|
|
services:
|
|
apphub:
|
|
image: websoft9dev/apphub${APP_VERSION}
|
|
container_name: ${APP_NAME}
|
|
pid: host
|
|
privileged: true
|
|
restart: unless-stopped
|
|
volumes:
|
|
- apphub-logs:/usr/src/app/logs
|
|
- apphub-db:/usr/src/app/db
|
|
- apphub-config:/usr/src/app/config
|
|
entrypoint: bash -c "/cmd.sh"
|
|
|
|
networks:
|
|
default:
|
|
name: ${APP_NETWORK}
|
|
external: true
|
|
|
|
volumes:
|
|
apphub-logs:
|
|
apphub-db:
|
|
apphub-config:
|