1
0
mirror of https://github.com/pooneyy/1Panel-Appstore.git synced 2026-03-18 01:01:02 +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

33 lines
652 B
YAML

services:
docker_osx:
image: "sickcodes/docker-osx:latest"
pull_policy: always
container_name: ${CONTAINER_NAME}
restart: ${RESTART_POLICY}
networks:
- 1panel-network
devices:
- /dev/kvm
environment:
- INTERNAL_SSH_PORT=10022
- DISPLAY:=${DISPLAY:-:0.0}
ports:
- ${PANEL_APP_PORT_SSH}:10022
volumes:
- /tmp/.X11-unix:/tmp/.X11-unix
- /dev:/dev
- /lib/modules:/lib/modules
- docker-osx_data:/home
cap_add:
- ALL
labels:
createdBy: "Apps"
volumes:
docker-osx_data:
name: docker-osx_data
networks:
1panel-network:
external: true