Rapidbay

Self-hosted torrent videostreaming service/torrent client that allows searching and playing videos from torrents in the browser or from a Chromecast/AppleTV/Smart TV.

Directory Structure

    • .env
    • docker-compose.yml

docker-compose.yml

version: "3"
 
services:
    jackett:
        image: linuxserver/jackett
        ports:
            - 9117:9117
        volumes:
            - ./.jackett:/config
 
    rapidbay:
        image: hauxir/rapidbay:latest
        environment:
            - JACKETT_HOST=http://jackett:9117
            - JACKETT_API_KEY=YOUR_API_KEY
        ports:
            - 5000:5000
        links:
            - jackett
        restart: unless-stopped

Resources

GitHub: https://github.com/hauxir/rapidbay

Docker Hub: https://hub.docker.com/r/hauxir/rapidbay

Configuration: https://github.com/hauxir/rapidbay#running