44 lines
770 B
YAML
44 lines
770 B
YAML
##
|
|
## Paperless config
|
|
##
|
|
|
|
image: ghcr.io/paperless-ngx/paperless-ngx:latest
|
|
|
|
url: example.com
|
|
adminpassword: changeme
|
|
secretkey: PLEASEOVERRIDETHESECRETKEY
|
|
|
|
persistence:
|
|
storageClass: ""
|
|
size: 1Gi
|
|
|
|
##
|
|
## MariaDB chart configuration
|
|
##
|
|
mariadb:
|
|
enabled: false
|
|
architecture: standalone
|
|
|
|
auth:
|
|
database: paperless
|
|
username: paperless
|
|
password: chamgeme
|
|
rootPassword: changeme2
|
|
|
|
## Enable persistence using Persistent Volume Claims
|
|
primary:
|
|
persistence:
|
|
enabled: true
|
|
# storageClass: ""
|
|
accessMode: ReadWriteOnce
|
|
size: 8Gi
|
|
|
|
##
|
|
## Redis chart configuration
|
|
## for more options see https://github.com/bitnami/charts/tree/master/bitnami/redis
|
|
##
|
|
redis:
|
|
enabled: false
|
|
auth:
|
|
enabled: true
|
|
password: changeme |