mirror of
https://github.com/pooneyy/1Panel-Appstore.git
synced 2026-03-17 23:51: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
23 lines
472 B
YAML
23 lines
472 B
YAML
services:
|
|
hubproxy:
|
|
image: ghcr.io/sky22333/hubproxy:latest
|
|
pull_policy: always
|
|
container_name: ${CONTAINER_NAME}
|
|
ports:
|
|
- "${PANEL_APP_PORT_HTTP}:5000"
|
|
volumes:
|
|
- ./data/config.toml:/root/config.toml
|
|
logging:
|
|
driver: json-file
|
|
options:
|
|
max-size: "1g"
|
|
max-file: "2"
|
|
labels:
|
|
createdBy: "Apps"
|
|
networks:
|
|
- 1panel-network
|
|
restart: always
|
|
networks:
|
|
1panel-network:
|
|
external: true
|