This commit is contained in:
Qballjos 2021-02-25 18:10:45 +01:00
parent 53e5662936
commit 97c46856d2
2 changed files with 16 additions and 11 deletions

View File

@ -31,8 +31,8 @@ services:
- DEBUG=${DEBUG} - DEBUG=${DEBUG}
- WEBUI_PORT=${QBITTORENTPORT} - WEBUI_PORT=${QBITTORENTPORT}
volumes: volumes:
- ${appdata folder}/qbittorrent:/config - ${APPDATA}/qbittorrent:/config
- ${download folder}:/data - ${DOWNLOAD}:/data
- /etc/localtime:/etc/localtime:ro - /etc/localtime:/etc/localtime:ro
restart: unless-stopped restart: unless-stopped
nzbhydra2: nzbhydra2:
@ -46,7 +46,7 @@ services:
- UMASK=002 - UMASK=002
- TZ=${TZ} - TZ=${TZ}
volumes: volumes:
- ${appdata folder}/nzbhydra2:/config - ${APPDATA}/nzbhydra2:/config
restart: unless-stopped restart: unless-stopped
jackett: jackett:
container_name: jackett container_name: jackett
@ -59,8 +59,8 @@ services:
- UMASK=002 - UMASK=002
- TZ=${TZ} - TZ=${TZ}
volumes: volumes:
- ${appdata folder}/jackett:/config - ${APPDATA}/jackett:/config
- ${download folder}:/data - ${DOWNLOAD}:/data
restart: unless-stopped restart: unless-stopped
nzbget: nzbget:
container_name: nzbget container_name: nzbget
@ -73,6 +73,6 @@ services:
- UMASK=002 - UMASK=002
- TZ=${TZ} - TZ=${TZ}
volumes: volumes:
- ${appdata folder}/nzbget:/config - ${APPDATA}/nzbget:/config
- ${download folder}:/data - ${DOWNLOAD}:/data
restart: unless-stopped restart: unless-stopped

View File

@ -22,9 +22,14 @@
}, },
{ {
"default": "8080", "default": "8080",
"label": "qBittorrent webui port", "label": "qBittorrent port",
"name": "QBITTORENTPORT" "name": "QBITTORENTPORT"
}, },
{
"default": "6789",
"label": "NZBget port",
"name": "NZBGETPORT"
},
{ {
"default": "8118", "default": "8118",
"label": "Privoxy port", "label": "Privoxy port",
@ -114,7 +119,7 @@
] ]
}, },
{ {
"label": "ENable Privoxy", "label": "Enable Privoxy",
"name": "ENABLE_PRIVOXY", "name": "ENABLE_PRIVOXY",
"select": [{ "select": [{
"text": "Yes", "text": "Yes",
@ -153,12 +158,12 @@
}, },
{ {
"label": "appdata folder", "label": "appdata folder",
"name": "appdata folder", "name": "APPDATA",
"description": "location of your appdata root" "description": "location of your appdata root"
}, },
{ {
"label": "download folder", "label": "download folder",
"name": "download folder", "name": "DOWNLOAD",
"description": "location of your download folder" "description": "location of your download folder"
} }
], ],