1
0
Files
docker-compose/fresh-rss/docker-compose.yml

34 lines
727 B
YAML

---
# FreshRSS
# An RSS aggregator app
# APP_CREATOR_NAME
# ↳ https://github.com/FreshRSS/FreshRSS
# ↳ https://freshrss.github.io/FreshRSS/en/admins/01_Index.html
services:
fresh-rss:
image: freshrss/freshrss:latest
container_name: fresh-rss
restart: unless-stopped
networks:
- proxy
# ports:
# - 80:80
environment:
- PUID=1000
- PGID=1000
- 'CRON_MIN=13,43' # Specifies Feed Update Time
volumes:
- /etc/timezone:/etc/timezone:ro
- /etc/localtime:/etc/localtime:ro
- /home/fxequals/docker/fresh-rss/data:/var/www/FreshRSS/data
- /home/fxequals/docker/fresh-rss/extensions:/var/www/FreshRss/extensions
networks:
proxy:
external: true