mirror of
https://github.com/pooneyy/1Panel-Appstore.git
synced 2026-03-23 16:59:40 +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
15 lines
342 B
YAML
15 lines
342 B
YAML
services:
|
|
beszel-agent:
|
|
image: "henrygd/beszel-agent:latest"
|
|
pull_policy: always
|
|
container_name: ${CONTAINER_NAME}
|
|
restart: always
|
|
network_mode: host
|
|
volumes:
|
|
- ${DOCKER_SOCK_PATH}:/var/run/docker.sock
|
|
environment:
|
|
- PORT=${PANEL_APP_PORT_HTTP}
|
|
- KEY=${KEY}
|
|
labels:
|
|
createdBy: "Apps"
|