Updated Dockerfile
e9de99cd
James Cole
committed
failed
1 changed file
Dockerfile
/Dockerfile+4
/Dockerfile
Add comment 13 ARG gitrevision
Add comment 14 ENV GITREVISION=$gitrevision
Add comment 15
Add comment 16 Plus  # better health check (timeout)
Add comment 17 Plus  HEALTHCHECK --start-period=5m --interval=5s --timeout=3s --retries=3 \
Add comment 18 Plus   CMD [ "sh", "-c", "curl --insecure --silent --location --show-error --fail http://localhost:8080$HEALTHCHECK_PATH || exit 1" ]
Add comment 19 Plus  
Add comment 16 20
Add comment 17 21 # static labels
Add comment 18 22 LABEL org.opencontainers.image.authors="James Cole <james@firefly-iii.org>" org.opencontainers.image.url="https://github.com/firefly-iii/docker" org.opencontainers.image.documentation="https://docs.firefly-iii.org/" org.opencontainers.image.source="https://dev.azure.com/Firefly-III/_git/MainImage" org.opencontainers.image.vendor="James Cole <james@firefly-iii.org>" org.opencontainers.image.licenses="AGPL-3.0-or-later" org.opencontainers.image.title="Firefly III" org.opencontainers.image.description="Firefly III - personal finance manager" org.opencontainers.image.base.name="docker.io/fireflyiii/base:latest"