mirror of
https://github.com/pooneyy/1Panel-Appstore.git
synced 2026-03-18 20:34:01 +08:00
- 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
25 lines
601 B
YAML
25 lines
601 B
YAML
services:
|
|
freshrss:
|
|
image: "freshrss/freshrss:latest"
|
|
pull_policy: always
|
|
container_name: ${CONTAINER_NAME}
|
|
restart: always
|
|
networks:
|
|
- 1panel-network
|
|
ports:
|
|
- "${PANEL_APP_PORT_HTTP}:${PANEL_APP_PORT_HTTP}"
|
|
volumes:
|
|
- ${DATA_PATH}/data:/var/www/FreshRSS/data
|
|
- ${EXTENSIONS_PATH}:/var/www/FreshRSS/extensions
|
|
environment:
|
|
- TZ=${TIME_ZONE}
|
|
- CRON_MIN=${CRON_MIN}
|
|
- FRESHRSS_ENV=${FRESHRSS_ENV}
|
|
- LISTEN=0.0.0.0:${PANEL_APP_PORT_HTTP}
|
|
labels:
|
|
createdBy: "Apps"
|
|
|
|
networks:
|
|
1panel-network:
|
|
external: true
|