1
0
mirror of https://github.com/pooneyy/1Panel-Appstore.git synced 2026-03-18 04:31:05 +08:00
pooneyy 7ff35caf28
🔧 chore(apps): set the pull policy for all services using fixed tag images
- 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
2025-11-10 16:10:24 +08:00

32 lines
862 B
YAML

services:
softether:
image: "softethervpn/vpnserver:latest"
pull_policy: always
cap_add:
- NET_ADMIN
container_name: ${CONTAINER_NAME}
restart: always
networks:
- 1panel-network
ports:
- ${VPN_PORT_53}:53
- ${VPN_PORT_443}:443
- ${VPN_PORT_992}:992
- ${VPN_PORT_1194_UDP}:1194/udp
- ${VPN_PORT_5555}:5555
- ${VPN_PORT_500_UDP}:500/udp
- ${VPN_PORT_4500_UDP}:4500/udp
- ${VPN_PORT_1701_UDP}:1701/udp
volumes:
- "/etc/localtime:/etc/localtime:ro"
- "/etc/timezone:/etc/timezone:ro"
- ${SOFTETHER_DATA_PATH}:/mnt
- ${SOFTETHER_LOG_PATH}:/root/server_log
- ${SOFTETHER_PACKETLOG_PATH}:/root/packet_log
- ${SOFTETHER_SECURITYLOG_PATH}:/root/security_log
labels:
createdBy: "Apps"
networks:
1panel-network:
external: true