mirror of
https://github.com/dragonflydb/dragonfly
synced 2024-11-21 15:11:20 +00:00
Chore: Fixed Docker Health Check (#2659)
* docker_healthcheck_fix * grep_fix_for_alpine * added environment variable for healthcheck and changed the port extraction accorfingly
This commit is contained in:
parent
842249bc60
commit
0081f4de71
@ -1,7 +1,11 @@
|
||||
#!/bin/sh
|
||||
|
||||
HOST="localhost"
|
||||
PORT=6379
|
||||
PORT=$HEALTHCHECK_PORT
|
||||
|
||||
if [ -z "$HEALTHCHECK_PORT" ]; then
|
||||
PORT=$(netstat -tuln | grep -oE ':[0-9]+' | grep -oE '[0-9]+' | tail -n 1)
|
||||
fi
|
||||
|
||||
# If we're running with TLS enabled, utilise OpenSSL for the check
|
||||
if [ -f "/etc/dragonfly/tls/ca.crt" ]
|
||||
|
@ -4,7 +4,7 @@ FROM gcr.io/cadvisor/cadvisor:v0.46.0 as libpfm_donor
|
||||
FROM alpine:3 as builder
|
||||
|
||||
# "openssl-libs-static" fixes "Could NOT find OpenSSL, try to set the path to OpenSSL root folder in the"
|
||||
RUN apk add autoconf-archive automake bash bison boost-dev cmake coreutils \
|
||||
RUN apk add autoconf-archive automake bash bison boost-dev cmake coreutils net-tools \
|
||||
curl ccache git gcc gdb g++ libunwind-dev libtool make ninja \
|
||||
openssl-dev openssl-libs-static patch zip zstd-static
|
||||
|
||||
|
@ -17,7 +17,7 @@ FROM ubuntu:20.04
|
||||
RUN --mount=type=tmpfs,target=/var/cache/apt \
|
||||
--mount=type=tmpfs,target=/var/lib/apt/lists \
|
||||
apt update && \
|
||||
apt install -q -y --no-install-recommends netcat-openbsd ca-certificates redis-tools
|
||||
apt install -q -y --no-install-recommends netcat-openbsd ca-certificates redis-tools net-tools
|
||||
|
||||
RUN groupadd -r -g 999 dfly && useradd -r -g dfly -u 999 dfly
|
||||
RUN mkdir /data && chown dfly:dfly /data
|
||||
|
@ -25,7 +25,7 @@ ARG DEBIAN_FRONTEND=noninteractive
|
||||
RUN --mount=type=tmpfs,target=/var/cache/apt \
|
||||
--mount=type=tmpfs,target=/var/lib/apt/lists \
|
||||
apt -q update && \
|
||||
apt install -q -y --no-install-recommends netcat-openbsd ca-certificates redis-tools
|
||||
apt install -q -y --no-install-recommends netcat-openbsd ca-certificates redis-tools net-tools
|
||||
|
||||
RUN groupadd -r -g 999 dfly && useradd -r -g dfly -u 999 dfly
|
||||
RUN mkdir /data && chown dfly:dfly /data
|
||||
|
Loading…
Reference in New Issue
Block a user