mirror of
https://github.com/technorabilia/docker-bits
synced 2024-11-10 13:10:31 +00:00
23 lines
776 B
YAML
23 lines
776 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:
|
|
# Local path for feed2toot config files.
|
|
- ${BASEDIR:-/volume1/docker}/feed2toot/config:/config
|
|
restart: unless-stopped
|