Files
nextcloud/Containers/eurooffice/Dockerfile
Julius Knorr 81ae4a2c49 fix(eurooffice): use ghcr.io image and cover missed integration spots
- 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>
2026-06-03 21:58:29 +02:00

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"