2022-11-16 01:00:41 +00:00
|
|
|
# [Feed2toot](https://gitlab.com/chaica/feed2toot) automatically parses rss
|
|
|
|
# feeds, identifies new posts and posts them on the Mastodon social network.
|
|
|
|
|
2023-04-26 00:53:18 +00:00
|
|
|
. ./.env
|
2022-11-16 01:00:41 +00:00
|
|
|
docker run -d \
|
|
|
|
--name=feed2toot \
|
|
|
|
-e PUID=${PUID:-1024} `# for UserID` \
|
|
|
|
-e PGID=${PGID:-100} `# for GroupID` \
|
2023-02-26 14:51:38 +00:00
|
|
|
-e TZ=${TZ:-Europe/Amsterdam} `# specify a timezone to use, see this [list](https://en.wikipedia.org/wiki/List_of_tz_database_time_zones#List).` \
|
2022-11-16 01:00:41 +00:00
|
|
|
-e FEED_LIMIT=5 `# optional` `# Limit number of RSS entries published at each execution.` \
|
2023-12-29 01:09:49 +00:00
|
|
|
-v ${BASEDIR:-/volume1/docker}/feed2toot/config:/config `# Persistent config files` \
|
2022-11-16 01:00:41 +00:00
|
|
|
--restart unless-stopped \
|
|
|
|
ghcr.io/linuxserver/feed2toot
|