Skip to content
Snippets Groups Projects
Verified Commit bef4c194 authored by Varac's avatar Varac
Browse files

Skip OnlyOffice fonts generation during startup

Closes: #34
parent 5637eeec
No related branches found
No related tags found
1 merge request!25Resolve "Don't generate OnlyOffice fonts on startup"
......@@ -73,6 +73,8 @@ spec:
value: "{{ .Values.postgresql.service.port }}"
- name: POSTGRESQL_SERVER_DB_NAME
value: "{{ .Values.postgresql.postgresqlDatabase }}"
- name: SKIP_FONTS_GENERATION
value: "{{ .Values.onlyoffice.skipFontsGeneration }}"
ports:
- name: http
containerPort: {{ .Values.onlyoffice.containerPort }}
......
......@@ -44,6 +44,13 @@ onlyoffice:
jwtSecret: "secret"
# Disable font generation during startup.
# This takes a long time and is not needed if you don't provide custom
# fonts.
# See https://0xacab.org/infrared/platform_wg/docker-onlyoffice-documentserver/issues/10
# for context.
skipFontsGeneration: true
# Port of onlyoffice server inside docker container.
containerPort: 8000
......@@ -52,7 +59,7 @@ onlyoffice:
image:
repository: infrarednetwork/onlyoffice-documentserver
tag: 5.4.0-2-1
tag: 5.4.1-2
pullPolicy: Always
strategy: Recreate
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment