coolify/templates/compose/freshrss.yaml

21 lines
558 B
YAML
Raw Normal View History

2024-08-24 22:06:22 +00:00
# documentation: https://freshrss.org/index.html
# slogan: A free, self-hostable feed aggregator.
# tags: rss, feed
2024-10-09 13:27:45 +00:00
# logo: svgs/freshrss.png
2024-10-09 13:21:37 +00:00
# port: 80
2024-08-24 10:49:33 +00:00
services:
freshrss:
image: freshrss/freshrss:latest
environment:
- SERVICE_FQDN_FRESHRSS_80
2024-10-09 13:21:37 +00:00
- CRON_MIN=${CRON_MIN:-1,31}
2024-08-24 10:49:33 +00:00
volumes:
2024-10-09 13:21:37 +00:00
- freshrss-data:/var/www/FreshRSS/data
- freshrss-extensions:/var/www/FreshRSS/extensions
healthcheck:
test: ["CMD-SHELL", "bash -c ':> /dev/tcp/127.0.0.1/80' || exit 1"]
interval: 5s
timeout: 20s
retries: 3