vhsw / docker-transmission

This is a Dockerfile to set up Transmission on LibreELEC

Home Page:https://hub.docker.com/r/vhsw/transmission/

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Docker Transmission

This is the Dockerfile to set up Transmission torrent client

Usage

Install docker. Then pull image:

docker pull vhsw/transmission

And run it:

docker run -d \
    --name transmission
    -v ~/Downloads:/downloads \
    -v ./config:/config \
    -p 9091:9091 \
    -p 45555:45555/tcp \
    -p 45555:45555/udp \
    vhsw/transmission

Build

Building from dockerfile:

git clone git@github.com:vhsw/docker-transmission.git
cd docker-transmission
docker build . -t transmission

Run the container:

docker run -d \
        --name transmission
        -v *your_watch_dir*:/watch \
        -v *your_final_dir:/downloads \
        -v *your_incomplete_dir:/incomplete \
        -v *your_config_location*:/config \
        -p 9091:9091 \
        -p 45555:45555/tcp \
        -p 45555:45555/udp \
        transmission

About

This is a Dockerfile to set up Transmission on LibreELEC

https://hub.docker.com/r/vhsw/transmission/

License:MIT License


Languages

Language:Dockerfile 100.0%