mirror of
https://github.com/xuthus83/pigallery2.git
synced 2024-11-03 21:04:03 +08:00
Merge pull request #2 from niawag/patch-4
Update Dockerfile.build - healthcheck changed from localhost to 127.0…
This commit is contained in:
commit
8bd3ff5cfc
@ -36,7 +36,7 @@ VOLUME ["/app/data/config", "/app/data/db", "/app/data/images", "/app/data/tmp"]
|
|||||||
RUN ["node", "./src/backend/index", "--expose-gc", "--run-diagnostics", "--config-path=/app/diagnostics-config.json"]
|
RUN ["node", "./src/backend/index", "--expose-gc", "--run-diagnostics", "--config-path=/app/diagnostics-config.json"]
|
||||||
HEALTHCHECK --interval=40s --timeout=30s --retries=3 --start-period=60s \
|
HEALTHCHECK --interval=40s --timeout=30s --retries=3 --start-period=60s \
|
||||||
CMD wget --quiet --tries=1 --no-check-certificate --spider \
|
CMD wget --quiet --tries=1 --no-check-certificate --spider \
|
||||||
http://localhost:80/heartbeat || exit 1
|
http://127.0.0.1:80/heartbeat || exit 1
|
||||||
|
|
||||||
# after a extensive job (like video converting), pigallery calls gc, to clean up everthing as fast as possible
|
# after a extensive job (like video converting), pigallery calls gc, to clean up everthing as fast as possible
|
||||||
# Exec form entrypoint is need otherwise (using shell form) ENV variables are not properly passed down to the app
|
# Exec form entrypoint is need otherwise (using shell form) ENV variables are not properly passed down to the app
|
||||||
|
Loading…
Reference in New Issue
Block a user