35 lines
995 B
YAML
35 lines
995 B
YAML
services:
|
|
freshrss:
|
|
image: ${FRESHRSS_IMAGE}
|
|
container_name: freshrss
|
|
restart: unless-stopped
|
|
environment:
|
|
TZ: ${TZ}
|
|
CRON_MIN: ${FRESHRSS_CRON_MIN}
|
|
FRESHRSS_ENV: ${FRESHRSS_ENV}
|
|
volumes:
|
|
- ${FRESHRSS_DATA_PATH}:/var/www/FreshRSS/data:Z
|
|
- ${FRESHRSS_EXTENSIONS_PATH}:/var/www/FreshRSS/extensions:Z
|
|
networks:
|
|
- freshrss_internal
|
|
- proxy
|
|
labels:
|
|
prune.protect: "true"
|
|
traefik.enable: "true"
|
|
traefik.docker.network: "${TRAEFIK_DOCKER_NETWORK}"
|
|
homepage.group: "Productividad"
|
|
homepage.name: "FreshRSS"
|
|
homepage.icon: "https://cdn.jsdelivr.net/gh/homarr-labs/dashboard-icons/svg/freshrss.svg"
|
|
homepage.description: "Lector RSS personal"
|
|
homepage.href: "https://${FRESHRSS_DOMAIN}/"
|
|
homepage.siteMonitor: "http://freshrss:80/"
|
|
homepage.weight: "560"
|
|
|
|
networks:
|
|
freshrss_internal:
|
|
driver: bridge
|
|
labels:
|
|
prune.protect: "true"
|
|
proxy:
|
|
external: true
|