mirror of
https://github.com/nextcloud/all-in-one.git
synced 2026-05-30 23:40:08 +00:00
Bumps onlyoffice/documentserver from 9.3.1.2 to 9.4.0.1. --- updated-dependencies: - dependency-name: onlyoffice/documentserver dependency-version: 9.4.0.1 dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] <support@github.com>
18 lines
853 B
Docker
18 lines
853 B
Docker
# syntax=docker/dockerfile:latest
|
|
# From https://github.com/ONLYOFFICE/Docker-DocumentServer/blob/master/Dockerfile
|
|
FROM onlyoffice/documentserver:9.4.0.1
|
|
|
|
# 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" \
|
|
org.opencontainers.image.title="OnlyOffice for Nextcloud AIO" \
|
|
org.opencontainers.image.description="OnlyOffice 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"
|