How To install Deluge using the linuxserver/deluge Docker image
Published on Aug. 22, 2023, 12:17 p.m.
To install Deluge using the linuxserver/deluge
Docker image, you can follow these steps:
- Install Docker on your system if it’s not already installed. You can download the appropriate version of Docker for your system from the official Docker website.
- Pull the
linuxserver/deluge
Docker image by running the following command in your terminal:
docker pull linuxserver/deluge
- Start the Deluge container by running the following command:
docker run -d --name deluge -p 8112:8112 -p 58846:58846 -v /path/to/config:/config -v /path/to/downloads:/downloads linuxserver/deluge
Replace /path/to/config
with the path on your system where you want to store the Deluge configuration files, and replace /path/to/downloads
with the path where you want to store the downloaded files.
This command starts the Deluge container in detached mode, assigns the name deluge
to the container, maps port 8112 on the host system to port 8112 inside the container (so you can access the Deluge web UI at http://localhost:8112
), maps port 58846 for incoming connections, and mounts two directories as volumes inside the container - one for the Deluge configuration files and one for downloaded files.
That’s it! You should now have Deluge up and running in a Docker container. If you need to stop the container, you can use the docker stop
command followed by the container name or ID. And if you want to remove the container, you can use the docker rm
command followed by the container name or ID.