mirror of
https://github.com/technorabilia/docker-bits
synced 2024-11-16 12:13:26 +00:00
24 lines
650 B
YAML
24 lines
650 B
YAML
# [Freshrss](https://freshrss.org/) is a free, self-hostable aggregator for rss
|
|
# feeds.
|
|
|
|
---
|
|
version: "2.1"
|
|
services:
|
|
freshrss:
|
|
image: ghcr.io/linuxserver/freshrss
|
|
container_name: freshrss
|
|
environment:
|
|
# for UserID
|
|
- PUID=${PUID:-1024}
|
|
# for GroupID
|
|
- PGID=${PGID:-100}
|
|
# specify a timezone to use, see this [list](https://en.wikipedia.org/wiki/List_of_tz_database_time_zones#List).
|
|
- TZ=${TZ:-Europe/Amsterdam}
|
|
volumes:
|
|
# Local storage for freshrss site files.
|
|
- ${BASEDIR:-/volume1/docker}/freshrss/config:/config
|
|
ports:
|
|
# WebUI
|
|
- 80:80
|
|
restart: unless-stopped
|