torrents fix
master
This commit is contained in:
parent
d0b31a61dd
commit
2eaa0bed3a
@ -15,8 +15,8 @@ services:
|
|||||||
mode: replicated
|
mode: replicated
|
||||||
replicas: 1
|
replicas: 1
|
||||||
restart_policy:
|
restart_policy:
|
||||||
condition: on-failure
|
delay: 60s
|
||||||
delay: 5s
|
window: 120s
|
||||||
|
|
||||||
jackett:
|
jackett:
|
||||||
image: linuxserver/jackett
|
image: linuxserver/jackett
|
||||||
@ -26,21 +26,28 @@ services:
|
|||||||
- PGID=${PGID}
|
- PGID=${PGID}
|
||||||
volumes:
|
volumes:
|
||||||
- jackett_config:/config
|
- jackett_config:/config
|
||||||
- downloads:/downloads
|
- data:/data
|
||||||
ports:
|
ports:
|
||||||
- target: 9117
|
- target: 9117
|
||||||
published: ${JACKETTPORT}
|
published: ${JACKETTPORT}
|
||||||
protocol: tcp
|
protocol: tcp
|
||||||
mode: host
|
mode: host
|
||||||
networks:
|
networks:
|
||||||
|
- external
|
||||||
- tornet
|
- tornet
|
||||||
- internal
|
- internal
|
||||||
|
healthcheck:
|
||||||
|
test: ["CMD", "curl", "-f", "http://localhost:9117"]
|
||||||
|
interval: 1m30s
|
||||||
|
timeout: 10s
|
||||||
|
retries: 3
|
||||||
|
start_period: 40s
|
||||||
deploy:
|
deploy:
|
||||||
mode: replicated
|
mode: replicated
|
||||||
replicas: 1
|
replicas: 1
|
||||||
restart_policy:
|
restart_policy:
|
||||||
condition: on-failure
|
delay: 60s
|
||||||
delay: 5s
|
window: 120s
|
||||||
|
|
||||||
radarr:
|
radarr:
|
||||||
image: linuxserver/radarr
|
image: linuxserver/radarr
|
||||||
@ -50,18 +57,29 @@ services:
|
|||||||
- PGID=${PGID}
|
- PGID=${PGID}
|
||||||
volumes:
|
volumes:
|
||||||
- radarr_config:/config
|
- radarr_config:/config
|
||||||
- downloads:/downloads
|
- data:/data
|
||||||
- radarr_movies:/movies
|
ports:
|
||||||
|
- target: 7878
|
||||||
|
published: ${RADARRPORT}
|
||||||
|
protocol: tcp
|
||||||
|
mode: host
|
||||||
networks:
|
networks:
|
||||||
|
- external
|
||||||
- tornet
|
- tornet
|
||||||
- internal
|
- internal
|
||||||
- traefik-net
|
- traefik-net
|
||||||
|
healthcheck:
|
||||||
|
test: ["CMD", "curl", "-f", "http://localhost:7878"]
|
||||||
|
interval: 1m30s
|
||||||
|
timeout: 10s
|
||||||
|
retries: 3
|
||||||
|
start_period: 40s
|
||||||
deploy:
|
deploy:
|
||||||
mode: replicated
|
mode: replicated
|
||||||
replicas: 1
|
replicas: 1
|
||||||
restart_policy:
|
restart_policy:
|
||||||
condition: on-failure
|
delay: 60s
|
||||||
delay: 5s
|
window: 120s
|
||||||
labels:
|
labels:
|
||||||
traefik.enable: "true"
|
traefik.enable: "true"
|
||||||
traefik.frontend.rule: "Host:radarr.${HOSTDOMAIN}"
|
traefik.frontend.rule: "Host:radarr.${HOSTDOMAIN}"
|
||||||
@ -79,18 +97,29 @@ services:
|
|||||||
- PGID=${PGID}
|
- PGID=${PGID}
|
||||||
volumes:
|
volumes:
|
||||||
- sonarr_config:/config
|
- sonarr_config:/config
|
||||||
- downloads:/downloads
|
- data:/data
|
||||||
- sonarr_tvs:/tv
|
ports:
|
||||||
|
- target: 8989
|
||||||
|
published: ${SONARRPORT}
|
||||||
|
protocol: tcp
|
||||||
|
mode: host
|
||||||
networks:
|
networks:
|
||||||
|
- external
|
||||||
- tornet
|
- tornet
|
||||||
- traefik-net
|
- traefik-net
|
||||||
- internal
|
- internal
|
||||||
|
healthcheck:
|
||||||
|
test: ["CMD", "curl", "-f", "http://localhost:8989"]
|
||||||
|
interval: 1m30s
|
||||||
|
timeout: 10s
|
||||||
|
retries: 3
|
||||||
|
start_period: 40s
|
||||||
deploy:
|
deploy:
|
||||||
mode: replicated
|
mode: replicated
|
||||||
replicas: 1
|
replicas: 1
|
||||||
restart_policy:
|
restart_policy:
|
||||||
condition: on-failure
|
delay: 60s
|
||||||
delay: 5s
|
window: 120s
|
||||||
labels:
|
labels:
|
||||||
traefik.enable: "true"
|
traefik.enable: "true"
|
||||||
traefik.frontend.rule: "Host:sonarr.${HOSTDOMAIN}"
|
traefik.frontend.rule: "Host:sonarr.${HOSTDOMAIN}"
|
||||||
@ -113,10 +142,10 @@ services:
|
|||||||
published: ${DELUGEDAEMONPORT}
|
published: ${DELUGEDAEMONPORT}
|
||||||
protocol: tcp
|
protocol: tcp
|
||||||
mode: host
|
mode: host
|
||||||
# - target: 8112
|
- target: 8112
|
||||||
# published: 8112
|
published: ${DELUGEWEBUIPORT}
|
||||||
# protocol: tcp
|
protocol: tcp
|
||||||
# mode: host
|
mode: host
|
||||||
- target: ${DELUGEINCOMINGPORT}
|
- target: ${DELUGEINCOMINGPORT}
|
||||||
published: ${DELUGEINCOMINGPORT}
|
published: ${DELUGEINCOMINGPORT}
|
||||||
protocol: tcp
|
protocol: tcp
|
||||||
@ -130,13 +159,20 @@ services:
|
|||||||
- internal
|
- internal
|
||||||
volumes:
|
volumes:
|
||||||
- deluge_config:/config
|
- deluge_config:/config
|
||||||
- downloads:/downloads
|
- data:/data
|
||||||
|
- /dev/null:/downloads
|
||||||
|
healthcheck:
|
||||||
|
test: ["CMD", "curl", "-f", "http://localhost:8112"]
|
||||||
|
interval: 1m30s
|
||||||
|
timeout: 10s
|
||||||
|
retries: 3
|
||||||
|
start_period: 40s
|
||||||
deploy:
|
deploy:
|
||||||
mode: replicated
|
mode: replicated
|
||||||
replicas: 1
|
replicas: 1
|
||||||
restart_policy:
|
restart_policy:
|
||||||
condition: on-failure
|
delay: 60s
|
||||||
delay: 5s
|
window: 120s
|
||||||
|
|
||||||
smb:
|
smb:
|
||||||
image: dperson-samba:armhf
|
image: dperson-samba:armhf
|
||||||
@ -152,9 +188,7 @@ services:
|
|||||||
networks:
|
networks:
|
||||||
- external
|
- external
|
||||||
volumes:
|
volumes:
|
||||||
- downloads:/downloads
|
- data:/data
|
||||||
- sonarr_tvs:/tv
|
|
||||||
- radarr_movies:/movies
|
|
||||||
- jackett_config:/configs/jackett
|
- jackett_config:/configs/jackett
|
||||||
- radarr_config:/configs/radarr
|
- radarr_config:/configs/radarr
|
||||||
- sonarr_config:/configs/sonarr
|
- sonarr_config:/configs/sonarr
|
||||||
@ -164,21 +198,19 @@ services:
|
|||||||
- smb_etc:/etc
|
- smb_etc:/etc
|
||||||
- smb_cache:/var/cache/samba
|
- smb_cache:/var/cache/samba
|
||||||
- smb_log:/var/log/samba
|
- smb_log:/var/log/samba
|
||||||
command: '-u "${SMBADMIN};${SMBADMINPASS}" -u "${SMBUSER};${SMBUSERPASS}" -u "${SMBUSERMEDIA};${SMBUSERMEDIAPASS}" -s "configs;/configs;yes;no;no;${SMBADMIN}" -s "tv shows;/tv;yes;no;no;${SMBADMIN},${SMBUSER},${SMBUSERMEDIA}" -s "movies;/movies;yes;no;no;${SMBADMIN},${SMBUSER},${SMBUSERMEDIA}" -s "downloads;/downloads;yes;no;no;${SMBADMIN},${SMBUSER}"' #Note, you should only provide one command statement
|
command: '-u "${SMBADMIN};${SMBADMINPASS}" -u "${SMBUSER};${SMBUSERPASS}" -u "${SMBUSERMEDIA};${SMBUSERMEDIAPASS}" -s "configs;/configs;yes;no;no;${SMBADMIN}" -s "tv shows;/data/tv;yes;no;no;${SMBADMIN},${SMBUSER},${SMBUSERMEDIA}" -s "movies;/data/movies;yes;no;no;${SMBADMIN},${SMBUSER},${SMBUSERMEDIA}" -s "downloads;/data/downloads;yes;no;no;${SMBADMIN},${SMBUSER}"' #Note, you should only provide one command statement
|
||||||
deploy:
|
deploy:
|
||||||
mode: replicated
|
mode: replicated
|
||||||
replicas: 1
|
replicas: 1
|
||||||
restart_policy:
|
restart_policy:
|
||||||
condition: on-failure
|
delay: 60s
|
||||||
delay: 5s
|
window: 120s
|
||||||
|
|
||||||
volumes:
|
volumes:
|
||||||
downloads:
|
data:
|
||||||
jackett_config:
|
jackett_config:
|
||||||
radarr_config:
|
radarr_config:
|
||||||
radarr_movies:
|
|
||||||
sonarr_config:
|
sonarr_config:
|
||||||
sonarr_tvs:
|
|
||||||
deluge_config:
|
deluge_config:
|
||||||
smb_lib:
|
smb_lib:
|
||||||
smb_run:
|
smb_run:
|
||||||
@ -203,6 +235,9 @@ networks:
|
|||||||
# JACKETTPORT 9117
|
# JACKETTPORT 9117
|
||||||
# DELUGEINCOMINGPORT 62054
|
# DELUGEINCOMINGPORT 62054
|
||||||
# DELUGEDAEMONPORT 58846
|
# DELUGEDAEMONPORT 58846
|
||||||
|
# DELUGEWEBUIPORT 8112
|
||||||
|
# RADARRPORT 7878
|
||||||
|
# SONARRPORT 8989
|
||||||
# SMBPORT 445
|
# SMBPORT 445
|
||||||
# SMBADMIN admin
|
# SMBADMIN admin
|
||||||
# SMBADMINPASS adminPass
|
# SMBADMINPASS adminPass
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user