34 lines
742 B
YAML
34 lines
742 B
YAML
---
|
|
|
|
# FreshRSS
|
|
# An RSS aggregator app
|
|
# Created by
|
|
# ↳ https://github.com/FreshRSS/FreshRSS
|
|
|
|
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
|
|
|
|
# Documentation available at https://freshrss.github.io/FreshRSS/en/admins/01_Index.html |