Fixed container healthcheck

This commit is contained in:
Alex Rennie-Lis
2024-05-28 16:45:18 +00:00
committed by root
parent 91dd8e2376
commit da5d12342d
58 changed files with 3 additions and 3 deletions

6
Dockerfile Normal file → Executable file
View File

@@ -5,8 +5,8 @@ COPY ./config /config
RUN mkdir -p /data && \
apk --no-cache add curl
HEALTHCHECK CMD curl -f http://localhost:8080/health || exit 1
HEALTHCHECK CMD curl -f http://localhost:8088/health || exit 1
EXPOSE 8080
EXPOSE 8088
CMD [ "node", "/app/index.js" ]
CMD [ "node", "/app/index.js" ]