I am completely new in Docker. I want to install Transmission using Docker (i.e. I don't want to use linuxserver.io/transmission)
For the moment my Dockerfile is :
RUN apt-get update -y
RUN apt-get install transmission-daemon -y
EXPOSE 9091 51413/tcp 51413/udp
But how to give the settings.json file? How to run my Dockerfile? Do I need a docker-compose.yml file?
Thank you in advance :)
First create a
Dockerfilefile :And a
docker-compose.ymlfile :Don't forget to put your
settings.jsonfile in the config folder (Users/jean/mystuff/config/settings.json). And stay consistent in this json file! Use/transmission/downloadsfordownload-dirproperty and so on...Then we have to build the image (open Terminal and go where the
Dockerfileis located)And finally start up, by doing (open Terminal and go where the
docker-compose.ymlis located)Many thanks to : https://gitlab.com/alexhaydock/docker-transmission