change download directory #2228
-
I am trying to get transmission to save to a directory that is not in /data. Here is what I have changed when the container is not running. Also changed this in settings.json for transmission My docker log is showing: Updating Transmission settings.json with values from env variables Any ideas how to get the settings to stick? |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 1 reply
-
please check your compose volumes:
- "C:/Users/username/Documents/Docker/Haugene-Transmission-OpenVPN:/data"
- "D:/Dockershare:/home
environment:
- TRANSMISSION_INCOMPLETE_DIR=:/home/incomplete
- TRANSMISSION_DOWNLOAD_DIR:/home is not valid..it should be volumes:
- "C:/Users/username/Documents/Docker/Haugene-Transmission-OpenVPN:/data"
- "D:/Dockershare:/home"
environment:
- TRANSMISSION_INCOMPLETE_DIR=/home/incomplete
- TRANSMISSION_DOWNLOAD_DIR=/home Above is also assuming you have properly setup volume sharing in docker for windows etc.. |
Beta Was this translation helpful? Give feedback.
please check your compose
is not valid..it should be
Above is also assuming you have properly setup volume sharing in docker for windows etc..
Please check the settings.json file with the container running, are the paths set correctly there or not? It seems not.
I suggest you stop your contai…