From d813a1b55fad540ef95b4492a8c3c80f5118cb2b Mon Sep 17 00:00:00 2001 From: Robert Kaussow Date: Tue, 4 Feb 2020 00:24:04 +0100 Subject: [PATCH] set back pipefail --- overlay/usr/local/bin/entrypoint | 2 +- overlay/usr/local/bin/healthcheck | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/overlay/usr/local/bin/entrypoint b/overlay/usr/local/bin/entrypoint index f83138d..503c00a 100755 --- a/overlay/usr/local/bin/entrypoint +++ b/overlay/usr/local/bin/entrypoint @@ -1,6 +1,6 @@ #!/usr/bin/env sh -set -eo +set -eo pipefail /usr/local/bin/gomplate -V -o /app/.env -f /etc/templates/env.tmpl diff --git a/overlay/usr/local/bin/healthcheck b/overlay/usr/local/bin/healthcheck index 78ebb77..a29bb9a 100755 --- a/overlay/usr/local/bin/healthcheck +++ b/overlay/usr/local/bin/healthcheck @@ -1,6 +1,6 @@ #!/usr/bin/env sh -set -eo pipefail +set -e URL=http://127.0.0.1:8080/alive