Transmission with docker configuration

  • Hello,

    I've installed transmission with docker in this way:

    docker run -d \

    --name=9091-transmission \

    --net=host \

    -e PUID=0 \

    -e PGID=0 \

    -e TZ=Europe/Paris \

    -e USER=transmission \

    -e PASS=libreelec \

    -p 9091:9091 \

    -p 51413:51413 \

    -p 51413:51413/udp \

    -v /storage/.config/dockers/transmission/config:/config \

    -v /storage/.config/dockers/transmission/downloads:/downloads \

    -v /storage/.config/dockers/transmission/watch:/watch \

    --restart unless-stopped \

    linuxserver/transmission

    And now the old torrents cannot be verified as the path what is in the torrent does not accept by the server.

    New torrents do not saved to the configured path, e.g. when I load the torrent, I set the path /var/media/cucc/letoltes/film but the file will be stored into /storage/.kodi/userdata/addon_data/service.system.docker/docker/overlay2/47f3b16e7bfd5421eaec79580c2a536bbdae0609c2aec2f5906bfb2a327aa751/diff/var/media/cucc/letoltes/film

    The config file is a mess for me, I figured it out how can I permanently modify it but I do not know what should I change...

    I've attached the modified json file (replaced the commas to linebreak).

    Is there anyone who has knowledge about this topic?

    Thanks in advance.

  • I don't know if I understood your problem, but if you add

    -v /storage:/storage \

    -v /media:/media \

    to the installation command you will be able to access almost any LibreELEC directory, or your external storage, from within the docker transmission service

    Tip: Forget about internal docker directories /storage/.kodi/userdata/addon_data/service.system.docker because you will never need them for anything