Workflow update

main
technorabilia 2 years ago
parent db4abf30a8
commit 0804714906

@ -0,0 +1,22 @@
# [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 for example Europe/Amsterdam
- 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

@ -0,0 +1,13 @@
# [Feed2toot](https://gitlab.com/chaica/feed2toot) automatically parses rss
# feeds, identifies new posts and posts them on the Mastodon social network.
source ./.env
docker run -d \
--name=feed2toot \
-e PUID=${PUID:-1024} `# for UserID` \
-e PGID=${PGID:-100} `# for GroupID` \
-e TZ=${TZ:-Europe/Amsterdam} `# Specify a timezone to use for example Europe/Amsterdam` \
-e FEED_LIMIT=5 `# optional` `# Limit number of RSS entries published at each execution.` \
-v ${BASEDIR:-/volume1/docker}/feed2toot/config:/config `# Local path for feed2toot config files.` \
--restart unless-stopped \
ghcr.io/linuxserver/feed2toot

@ -0,0 +1,3 @@
ln -s ../docker-env.cfg ./.env
. ./.env
mkdir -p ${BASEDIR:-/volume1/docker}/feed2toot/config
Loading…
Cancel
Save