2023-03-31 08:25:18 +08:00
|
|
|
version: "3.8"
|
|
|
|
|
|
|
|
services:
|
2023-09-15 18:54:50 +08:00
|
|
|
apphub:
|
2023-09-19 09:02:56 +08:00
|
|
|
image: websoft9dev/apphub:$APP_VERSION
|
|
|
|
container_name: $APP_NAME
|
|
|
|
ports:
|
|
|
|
- 127.0.0.1:9001:8080
|
2023-09-18 17:13:15 +08:00
|
|
|
restart: always
|
2023-03-31 08:25:18 +08:00
|
|
|
volumes:
|
2023-09-19 09:02:56 +08:00
|
|
|
- logs:/usr/websoft9/apphub/logs
|
|
|
|
- media:/usr/websoft9/media
|
|
|
|
- config:/usr/websoft9/apphub/src/conf
|
2023-03-31 08:25:18 +08:00
|
|
|
|
|
|
|
networks:
|
|
|
|
default:
|
2023-09-19 09:02:56 +08:00
|
|
|
name: $APP_NETWORK
|
2023-03-31 08:25:18 +08:00
|
|
|
external: true
|
|
|
|
|
|
|
|
volumes:
|
2023-09-19 09:02:56 +08:00
|
|
|
logs:
|
|
|
|
media:
|
|
|
|
config:
|