We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f7a1b18 commit 8df522fCopy full SHA for 8df522f
apps/frontend/Dockerfile
@@ -6,6 +6,9 @@ COPY ./.docker/entrypoint.sh /
6
7
RUN chmod +x /entrypoint.sh
8
9
+HEALTHCHECK --interval=30s --timeout=10s --start-period=5s --retries=3 \
10
+ CMD wget --spider --quiet http://localhost || exit 1
11
+
12
EXPOSE 80
13
ENTRYPOINT ["/entrypoint.sh"]
14
CMD ["nginx", "-g", "daemon off;"]
apps/mockup/Dockerfile
@@ -1,4 +1,9 @@
1
FROM docker.io/nginx:stable-alpine
2
3
COPY src/ /usr/share/nginx/html/
4
5
0 commit comments