Sonarr To RSS is a Sonarr Webhook connection endpoint that streams events to RSS/Atom/JSON feeds.
10K+
Sonarr To RSSSonarr To RSS is a Sonarr Webhook connection endpoint that streams events to RSS/Atom/JSON feeds and provides a paginated website to browse historical events.
Docker CLI:
docker run -it \
-v ${CONFIG_DIR}:/data:rw \
-p 18989:18989/tcp \
-e PUID=1000 \
-e PGID=1000 \
gbendy/sonarrtorss
Docker compose:
version: '3.8'
services:
sonarrtorss:
image: gbendy/sonarrtorss
ports:
- 18989:18989
volumes:
- ${CONFIG_DIR}/data
environment:
- PUID=1000
- PGID=1000
Once running point your web browser to the exposed port and perform first time configuration. Then configure a Sonarr Webhook connection to point to http://hostname:port/sonarr to start sending events and subscribe to the RSS feed at http://hostname:port/rss
HTTPS support can be provided by either domain or subfolder based reverse proxies. SWAG configuration files can be found here.
-v ${CONFIG_DIR}:/data:rw Directory to keep configuration files and event database.-p 18989:18989/tcp Web interface port to expose-e PUID=1000 The user id to run the service as inside the container. This user ID must have write access to the mounted configuration volume at `${CONFIG_DIR}.-e PGID=1000 The group id to run the service as inside the container.Content type
Image
Digest
sha256:492069e9f…
Size
54.9 MB
Last updated
over 1 year ago
docker pull gbendy/sonarrtorss