mirror of
https://github.com/kevinveenbirkenbach/computer-playbook.git
synced 2025-11-26 14:46:56 +00:00
- New web-svc-onlyoffice role (Docker, env, CSP, proxy hooks) - Nextcloud plugin integration with JWT and CSP updates - Custom Nextcloud image with updated CA certificates - Networking and port assignments - Disabled Collabora by default - Enabled ONLYOFFICE by default - Link to conversation for reference: https://chatgpt.com/share/691f49ac-54d8-800f-83c3-60cf8c100183
5 lines
198 B
Django/Jinja
5 lines
198 B
Django/Jinja
FROM {{ NEXTCLOUD_IMAGE }}:{{ NEXTCLOUD_VERSION }}
|
|
{% if NEXTCLOUD_ONLYOFFICE_ENABLED | bool %}
|
|
# Required for ONLYOFFICE
|
|
RUN apk add --no-cache ca-certificates && update-ca-certificates
|
|
{% endif %} |