setup required permissions to run youtubedl as non-root

This commit is contained in:
kjeld Schouten-Lebbing 2021-04-18 15:20:44 +02:00
parent 6a158aeb0a
commit a57820c16b
No known key found for this signature in database
GPG Key ID: 4CDAD4A532BC1EDB
2 changed files with 6 additions and 5 deletions

View File

@ -194,7 +194,7 @@ questions:
description: "Path inside the container the storage is mounted"
schema:
type: string
default: "/data/appdata"
default: "/app/appdata"
hidden: true
- variable: emptyDir
label: "Mount a ramdisk instead of actual storage"
@ -411,7 +411,7 @@ questions:
description: "Additional groups this App needs access to"
schema:
type: list
default: []
default: [568]
items:
- variable: Group
label: "Group"

View File

@ -13,6 +13,7 @@ podSecurityContext:
runAsUser: 568
runAsGroup: 568
fsGroup: 568
supplementalGroups: [44, 107]
services:
main:
@ -26,7 +27,7 @@ env: {}
persistence:
config:
enabled: true
mountPath: "/data/appdata"
mountPath: "/app/appdata"
emptyDir: true
accessMode: ReadWriteOnce
size: 1Gi