mirror of
https://github.com/xuthus83/pigallery2.git
synced 2024-11-03 21:04:03 +08:00
Improving docker file. Hopefully fixes the issue that ENV variables do not load when running the default entrypoint. #136
This commit is contained in:
parent
373b13f53d
commit
35435af7c0
@ -25,8 +25,6 @@ ENV NODE_ENV=production \
|
||||
# flagging dockerized environemnt
|
||||
PI_DOCKER=true
|
||||
|
||||
# after a extensive job (like video converting), pigallery calls gc, to clean up everthing as fast as possible
|
||||
ENTRYPOINT node ./src/backend/index --expose-gc --config-path=$CONFIG_FILE
|
||||
|
||||
EXPOSE 80
|
||||
RUN apk add --update-cache --repository https://alpine.global.ssl.fastly.net/alpine/v3.11/community/ \
|
||||
@ -36,3 +34,6 @@ VOLUME ["/app/data/config", "/app/data/db", "/app/data/images", "/app/data/tmp"]
|
||||
HEALTHCHECK --interval=40s --timeout=30s --retries=3 --start-period=60s \
|
||||
CMD wget --quiet --tries=1 --no-check-certificate --spider \
|
||||
http://localhost:80/heartbeat || exit 1
|
||||
|
||||
# after a extensive job (like video converting), pigallery calls gc, to clean up everthing as fast as possible
|
||||
ENTRYPOINT ["node", "./src/backend/index", "--expose-gc", "--config-path=${CONFIG_FILE}"]
|
||||
|
@ -33,5 +33,5 @@ HEALTHCHECK --interval=40s --timeout=30s --retries=3 --start-period=60s \
|
||||
http://localhost:80/heartbeat || exit 1
|
||||
|
||||
# after a extensive job (like video converting), pigallery calls gc, to clean up everthing as fast as possible
|
||||
ENTRYPOINT ["node", "./src/backend/index", "--expose-gc", "--config-path=$CONFIG_FILE"]
|
||||
ENTRYPOINT ["node", "./src/backend/index", "--expose-gc", "--config-path=${CONFIG_FILE}"]
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user