1
0
mirror of https://github.com/pooneyy/1Panel-Appstore.git synced 2026-03-24 05:29:40 +08:00
1Panel-Appstore/apps/lanraragi/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

26 lines
697 B
YAML

services:
lanraragi:
image: "difegue/lanraragi:latest"
pull_policy: always
container_name: ${CONTAINER_NAME}
restart: always
networks:
- 1panel-network
ports:
- "${PANEL_APP_PORT_HTTP}:3000"
volumes:
- ${CONTENT_DIRECTORY}:/home/koyomi/lanraragi/content
- ${THUMBNAIL_DIRECTORY}:/home/koyomi/lanraragi/content/thumb
- ${DATABASE_DIRECTORY}:/home/koyomi/lanraragi/database
- ${PLUGIN_DIRECTORY}:/home/koyomi/lanraragi/lib/LANraragi/Plugin
environment:
- http_proxy=${HTTP_PROXY}
- https_proxy=${HTTPS_PROXY}
- TZ=${TIME_ZONE}
labels:
createdBy: "Apps"
networks:
1panel-network:
external: true