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

View File

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