You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

23 lines
761 B
YAML

# [Feed2toot](https://gitlab.com/chaica/feed2toot) automatically parses rss
# feeds, identifies new posts and posts them on the Mastodon social network.
---
version: "2.1"
services:
feed2toot:
image: ghcr.io/linuxserver/feed2toot
container_name: feed2toot
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}
# Limit number of RSS entries published at each execution.
- FEED_LIMIT=5 # optional
volumes:
# Persistent config files
- ${BASEDIR:-/volume1/docker}/feed2toot/config:/config
restart: unless-stopped