diff options
Diffstat (limited to 'healthcheck')
-rw-r--r-- | healthcheck/Dockerfile | 13 | ||||
-rw-r--r-- | healthcheck/port.conf | 6 |
2 files changed, 19 insertions, 0 deletions
diff --git a/healthcheck/Dockerfile b/healthcheck/Dockerfile new file mode 100644 index 0000000..b34fb79 --- /dev/null +++ b/healthcheck/Dockerfile @@ -0,0 +1,13 @@ +FROM bitnami/minideb:stretch + +RUN apt-get update && apt-get -y install git +RUN git clone https://github.com/BayLibre/lava-healthchecks-binary.git + +FROM nginx:mainline-alpine + +COPY port.conf /etc/nginx/conf.d/ + +COPY --from=0 /lava-healthchecks-binary/mainline /usr/share/nginx/html/mainline/ +COPY --from=0 lava-healthchecks-binary/images /usr/share/nginx/html/images/ +COPY --from=0 lava-healthchecks-binary/next /usr/share/nginx/html/next/ +COPY --from=0 lava-healthchecks-binary/stable /usr/share/nginx/html/stable/ diff --git a/healthcheck/port.conf b/healthcheck/port.conf new file mode 100644 index 0000000..60c72f3 --- /dev/null +++ b/healthcheck/port.conf @@ -0,0 +1,6 @@ +# On docker, port 80 cannot be exported since lava-slave already export it +# So port 8080 is exported instead. +server { + listen 8080; + root /usr/share/nginx/html/; +} |