mirror of
https://github.com/pooneyy/1Panel-Appstore.git
synced 2026-03-18 18:01:03 +08:00
- add `pull_policy: always` to all service definitions across all docker-compose files - ensure consistent image update behavior for all applications - maintain existing network configurations and external network settings - preserve all other service configurations and environment variables
18 lines
630 B
YAML
18 lines
630 B
YAML
services:
|
|
nging:
|
|
image: admpub/nging:latest
|
|
pull_policy: always
|
|
container_name: ${CONTAINER_NAME}
|
|
restart: always
|
|
network_mode: host
|
|
volumes:
|
|
- ./data/data/cache:/home/nging_linux_amd64/data/cache
|
|
- ./data/data/ftpdir:/home/nging_linux_amd64/data/ftpdir
|
|
- ./data/data/logs:/home/nging_linux_amd64/data/logs
|
|
- ./data/data/sm2:/home/nging_linux_amd64/data/sm2
|
|
- ./data/myconfig:/home/nging_linux_amd64/myconfig
|
|
- ./data/public:/home/nging_linux_amd64/public
|
|
command: ["-p", "${PANEL_APP_PORT_HTTP}", "-c", "myconfig/config.yaml"]
|
|
labels:
|
|
createdBy: "Apps"
|