changed umask

This commit is contained in:
Qballjos 2021-02-26 11:21:03 +01:00
parent 569365824f
commit 3186517995
2 changed files with 8 additions and 3 deletions

View File

@ -6,7 +6,7 @@ services:
environment: environment:
- "PUID=${PUID}" - "PUID=${PUID}"
- "PGID=${PGID}" - "PGID=${PGID}"
- UMASK=002 - "UMASK=${UMASK}"
- "TZ=${TZ}" - "TZ=${TZ}"
image: hotio/lidarr image: hotio/lidarr
privileged: true privileged: true
@ -21,7 +21,7 @@ services:
environment: environment:
- "PUID=${PUID}" - "PUID=${PUID}"
- "PGID=${PGID}" - "PGID=${PGID}"
- UMASK=002 - "UMASK=${UMASK}"
- "TZ=${TZ}" - "TZ=${TZ}"
image: hotio/radarr image: hotio/radarr
privileged: true privileged: true
@ -36,7 +36,7 @@ services:
environment: environment:
- "PUID=${PUID}" - "PUID=${PUID}"
- "PGID=${PGID}" - "PGID=${PGID}"
- UMASK=002 - "UMASK=${UMASK}"
- "TZ=${TZ}" - "TZ=${TZ}"
image: hotio/sonarr image: hotio/sonarr
privileged: true privileged: true

View File

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