mirror of
https://github.com/nextcloud/all-in-one.git
synced 2026-06-04 18:00:10 +00:00
- pull document server from ghcr.io/euro-office/documentserver - add selected-card styling for the EuroOffice office card - teach update-helm.sh about the eurooffice deployment - track Containers/eurooffice with dependabot - align latest.yml env with containers.json - mention EuroOffice in readme and QA checklist AI-assistant: Claude Code 2.1.162 (Claude Opus 4.8) Signed-off-by: Julius Knorr <jus@bitgrid.net>
18 lines
809 B
Docker
18 lines
809 B
Docker
# syntax=docker/dockerfile:latest
|
|
FROM ghcr.io/euro-office/documentserver:latest
|
|
|
|
# USER root is probably used
|
|
|
|
COPY --chmod=775 healthcheck.sh /healthcheck.sh
|
|
|
|
HEALTHCHECK --start-period=60s --retries=9 CMD /healthcheck.sh
|
|
LABEL com.centurylinklabs.watchtower.enable="false" \
|
|
wud.watch="false" \
|
|
dockhand.update="false" \
|
|
org.opencontainers.image.title="EuroOffice for Nextcloud AIO" \
|
|
org.opencontainers.image.description="EuroOffice Document Server for Nextcloud All-in-One" \
|
|
org.opencontainers.image.url="https://github.com/nextcloud/all-in-one" \
|
|
org.opencontainers.image.source="https://github.com/nextcloud/all-in-one" \
|
|
org.opencontainers.image.vendor="Nextcloud" \
|
|
org.opencontainers.image.documentation="https://github.com/nextcloud/all-in-one/blob/main/readme.md"
|