How Check the Password of the Transmission in Docker

how to start a Transmission in Docker

docker run --name transmissionbt --restart=always -d  -e TZ=Hongkong  -e USERID=1001  -e GROUPID=1001 -v /your/local/path/to/transmission:/var/lib/transmission-daemon -p 9091:9091 -p 51413:51413  dperson/transmission

how to check the password:

first get the console of the container:

docker exec -it transmissionbt /bin/sh

then in the shell console of the container:

ps -ef | grep transmission

you will seee the password transmis 0:11 transmission-daemon --allowed * --blocklist --config-dir /var/lib/transmission-daemon/info --foreground --log-info --no-portmap --auth --username admin --password aaabbbccc

comments powered by Disqus