Skip to content

Torrentmonitor Transmission TOR

Siarhei Navatski edited this page Jan 10, 2017 · 1 revision

I know that many people use torrentmonitor together with Transmission and TOR. The docker compose above could help you to run them togethe in docker containers

# MAIN_HOST=`/sbin/ifconfig eth0 | grep 'inet addr:' | cut -d: -f2 | awk '{ print $1}'` docker-compose up -d

torrentmonitor:
  image: nawa/torrentmonitor
  ports:
   - "8080:80"
  volumes:
   - /tmp/torrentmonitor/torrents:/data/htdocs/torrents
   - /tmp/torrentmonitor/db:/data/htdocs/db
  links:
   - tor
   - transmission

tor:
  image: cmondies/synology-tor-client-minimal

transmission:
  image: wbouzane/transmission-daemon
  ports:
   - "9091:9091"
  volumes:
   - /tmp/transmission-downloads:/downloads
  extra_hosts:
   - "dockerhost:${MAIN_HOST}"

Copy it to docker-compose.yml and run

docker-compose up -d
Clone this wiki locally