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: services:
gluetun: gluetun:
image: qmcgaw/gluetun image: qmcgaw/gluetun
# container_name: gluetun
restart: always restart: always
cap_add: cap_add:
- NET_ADMIN - NET_ADMIN
@@ -14,7 +15,6 @@ services:
- 11002:8080 #rutorrent - 11002:8080 #rutorrent
- 11003:9000 #rutorremt - 11003:9000 #rutorremt
- 4733:4733 #rutorrent - 4733:4733 #rutorrent
- 80:80 #TinyFileManager
environment: environment:
- PUID=1000 - PUID=1000
- PGID=1000 - PGID=1000
@@ -28,24 +28,30 @@ services:
- FIREWALL_VPN_INPUT_PORTS=4733 - FIREWALL_VPN_INPUT_PORTS=4733
rutorrent: rutorrent:
image: crazymax/rtorrent-rutorrent:latest image: crazymax/rtorrent-rutorrent:latest
environment: # container_name: rutorrent
- PUID=1000 environment:
- PGID=1000 - PUID=1000
- TZ=America/Chicago - PGID=1000
- 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' - TZ=America/Chicago
- RT_INC_PORT=4733 - 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'
volumes: - RT_INC_PORT=4733
- ./data/rutorrent/data:/data depends_on:
- /data:/downloads - gluetun
- ./data/rutorrent/password:/passwd volumes:
network_mode: service:gluetun - ./data/rutorrent/data:/data
security_opt: - /data:/downloads
- no-new-privileges:true - ./data/rutorrent/password:/passwd
restart: always network_mode: service:gluetun
security_opt:
- no-new-privileges:true
restart: always
tinyfilemanager: tinyfilemanager:
image: tinyfilemanager/tinyfilemanager:master image: tinyfilemanager/tinyfilemanager:master
# container_name: tinyfilemanager
ports:
- 80:80
environment: environment:
- PUID=1000 - PUID=1000
- PGID=1000 - PGID=1000