1
0
mirror of https://github.com/pooneyy/1Panel-Appstore.git synced 2026-04-02 15:56:40 +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

28 lines
667 B
YAML

services:
hivision-id-photo:
image: "linzeyi/hivision_idphotos:latest"
pull_policy: always
container_name: ${CONTAINER_NAME}
restart: always
networks:
- 1panel-network
ports:
- "${PANEL_APP_PORT_HTTP}:${PANEL_APP_PORT_HTTP_INTERNAL}"
environment:
- FACE_PLUS_API_KEY=${FACE_PLUS_API_KEY}
- FACE_PLUS_API_SECRET=${FACE_PLUS_API_SECRET}
- RUN_MODE=${RUN_MODE}
- DEFAULT_LANG=${DEFAULT_LANG}
command: ${COMMAND}
deploy:
resources:
reservations:
devices:
- capabilities: [gpu]
labels:
createdBy: "Apps"
networks:
1panel-network:
external: true