Skip to content

This is a Dockerfile to set up Transmission on LibreELEC

License

Notifications You must be signed in to change notification settings

vhsw/docker-transmission

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

28 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

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 [email protected]: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

Releases

No releases published

Packages

No packages published

Languages

  • Dockerfile 100.0%