1
0
mirror of https://github.com/pooneyy/1Panel-Appstore.git synced 2026-03-21 08:30:24 +08:00
1Panel-Appstore/apps/icat_lite/latest/docker-compose.yml
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

23 lines
881 B
YAML

services:
icat_lite:
image: "bluesdo/icat_lite_public:latest"
pull_policy: always
container_name: ${CONTAINER_NAME}
restart: always
networks:
- 1panel-network
volumes:
- ./icat_lite/data:/icat_lite/www/data
- ./icat_lite/system:/icat_lite/www/public/statics/system
- ./icat_lite/systemBlock:/icat_lite/www/public/statics/systemBlock
- ./icat_lite/sticker:/icat_lite/www/public/statics/sticker
- ./icat_lite/certs:/icat_lite/certs
ports:
- ${PANEL_APP_PORT_HTTP}:8095
command: "serve.js --host 0.0.0.0 --port 8095 --dbHost ${PANEL_DB_HOST} --dbPort ${PANEL_DB_PORT} --dbName ${PANEL_DB_NAME} --dbUser ${PANEL_DB_USER} --dbPassword ${PANEL_DB_USER_PASSWORD} --pwdKey ${ICAT_PWDKEY} --cookiePwd ${ICAT_COOKIEPWD} --alterAll"
labels:
createdBy: "Apps"
networks:
1panel-network:
external: true