Deploy deluge in docker

Makes version managing so much easier!
This commit is contained in:
Jake Howard
2021-02-01 17:24:36 +00:00
parent ac68b36841
commit e8496ddced
5 changed files with 51 additions and 0 deletions

View File

@ -0,0 +1,24 @@
version: "2.3"
services:
deluge:
image: linuxserver/deluge:latest
network_mode: host
environment:
- PUID={{ docker_user.id }}
- PGID={{ docker_user.id }}
- TZ=Europe/London
volumes:
- ./deluge:/config
- /mnt/downloads:/downloads
restart: unless-stopped
egress:
image: theorangeone/static-server:latest
restart: unless-stopped
environment:
- INDEX=on
volumes:
- /mnt/downloads:/srv:ro
ports:
- 80:80