update downloader.yml

This commit is contained in:
tolerryan
2025-10-10 00:37:32 -05:00
parent a14f16106d
commit 5312ca0af5

View File

@@ -1,6 +1,7 @@
services:
gluetun:
image: qmcgaw/gluetun
# container_name: gluetun
restart: always
cap_add:
- NET_ADMIN
@@ -14,7 +15,6 @@ services:
- 11002:8080 #rutorrent
- 11003:9000 #rutorremt
- 4733:4733 #rutorrent
- 80:80 #TinyFileManager
environment:
- PUID=1000
- PGID=1000
@@ -28,24 +28,30 @@ services:
- FIREWALL_VPN_INPUT_PORTS=4733
rutorrent:
image: crazymax/rtorrent-rutorrent:latest
environment:
- PUID=1000
- PGID=1000
- TZ=America/Chicago
- XMLRPC_PORT=11001 #the default port is 8000 but mine was already in use. if yours is free then you don't need this line and you can change this line '- 11001:11001' in ports to '- 11001:8000'
- RT_INC_PORT=4733
volumes:
- ./data/rutorrent/data:/data
- /data:/downloads
- ./data/rutorrent/password:/passwd
network_mode: service:gluetun
security_opt:
- no-new-privileges:true
restart: always
image: crazymax/rtorrent-rutorrent:latest
# container_name: rutorrent
environment:
- PUID=1000
- PGID=1000
- TZ=America/Chicago
- XMLRPC_PORT=11001 #the default port is 8000 but mine was already in use. if yours is free then you don't need this line and you can change this line '- 11001:11001' in ports to '- 11001:8000'
- RT_INC_PORT=4733
depends_on:
- gluetun
volumes:
- ./data/rutorrent/data:/data
- /data:/downloads
- ./data/rutorrent/password:/passwd
network_mode: service:gluetun
security_opt:
- no-new-privileges:true
restart: always
tinyfilemanager:
image: tinyfilemanager/tinyfilemanager:master
# container_name: tinyfilemanager
ports:
- 80:80
environment:
- PUID=1000
- PGID=1000