Selfhosted RARBG
10K+
A Torznab API that can be used with the Servarr stack.
docker-compose.yml file to your needs. At a minimum you'll need to point the /rarbg_db.sqlite volume to the path of your SQLite file, and ensure this container is running in the same Docker network as your Servarr stack containers:---
version: "3.9"
services:
rarbg:
container_name: rarbg
image: "justsky/rbg:latest"
# environment:
# - "PATH_SQLITE_DB=/rarbg_db.sqlite" (optional, this is the default value)
# - "PATH_TRACKERS=/trackers.txt" (optional, this is the default value)
# - "DEBUG=1" (optional, useful for troubleshooting)
volumes:
- "/path/to/rarbg_db.sqlite:/rarbg_db.sqlite"
ports:
- "3333:3333"
restart: unless-stopped
docker-compose up -d.3333 under the path /torznab.Alternatively, start the container using docker run:
docker run -v /path/to/rarbg_db.sqlite:/rarbg_db.sqlite -p 3333:3333 justsky/rbg:latest
Or, install GoLang, clone this repo and run directly:
PATH_SQLITE_DB=/path/to/rarbg_db.sqlite go run .
Content type
Image
Digest
sha256:d51b58f31…
Size
11.5 MB
Last updated
about 14 hours ago
docker pull justsky/rbg