Transmission web ui doesn't see completed torrents even though they are mounted in the container #2447
-
Hello, Recently I had to move my docker to another machine and since then I've been having some problems. And this is my docker-compose which used to work (probably on the previous version of the image) However since I've started using this config on another machine my transmission web ui doesn't see completed torrents there. I've looked at the documentation http://haugene.github.io/docker-transmission-openvpn/ and the sample config looks the same. Thank You for your help. |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 1 reply
-
I think you're having the same problem I was having after the recent update. Downloading worked fine, but any config or previous downloads do not persist when restarting the container. After some digging, I found that config has been extracted into a separate folder, so you need to mount an additional volume to persist the config. Try adding |
Beta Was this translation helpful? Give feedback.
I think you're having the same problem I was having after the recent update. Downloading worked fine, but any config or previous downloads do not persist when restarting the container.
After some digging, I found that config has been extracted into a separate folder, so you need to mount an additional volume to persist the config. Try adding
/path/to/config:/config
to your list of volumes, where/path/to/config
is a folder on your device that contains thetransmission-home
folder. That's what fixed it for me.