add UMASK option

This commit is contained in:
Qballjos 2021-02-26 12:54:47 +01:00
parent 83216e7491
commit 94eec66552
2 changed files with 10 additions and 5 deletions

View File

@ -8,7 +8,7 @@ services:
environment:
- "PUID=${PUID}"
- "PGID=${PGID}"
- UMASK=002
- "UMASK=${UMASK}"
- "TZ=${TZ}"
image: hotio/jackett
network_mode: "service:qbittorrent"
@ -23,7 +23,7 @@ services:
environment:
- "PUID=${PUID}"
- "PGID=${PGID}"
- UMASK=002
- "UMASK=${UMASK}"
- "TZ=${TZ}"
image: hotio/nzbget
network_mode: "service:qbittorrent"
@ -38,7 +38,7 @@ services:
environment:
- "PUID=${PUID}"
- "PGID=${PGID}"
- UMASK=002
- "UMASK=${UMASK}"
- "TZ=${TZ}"
image: hotio/nzbhydra2
network_mode: "service:qbittorrent"
@ -49,8 +49,8 @@ services:
container_name: qbittorrent
environment:
- "PUID=${PUID}"
- PGID=${PGID}
- "UMASK=002"
- "PGID=${PGID}"
- "UMASK=${UMASK}"
- "TZ=${TZ}"
- "VPN_ENABLED=${VPN_ENABLED}"
- "VPN_USER=${VPN_USER}"

View File

@ -16,6 +16,11 @@
"label": "PGID",
"name": "PGID"
},
{
"default": "002",
"label": "UMASK",
"name": "UMASK"
},
{
"label": "TZ",
"name": "TZ"