From a4a4f243c15cdaaf6cc785110dc8b9b045545980 Mon Sep 17 00:00:00 2001 From: Leopere Date: Sat, 2 Jun 2018 18:21:57 -0400 Subject: [PATCH] Fail better https://unix.stackexchange.com/questions/384305/debugging-scripts-what-is-the-difference-between-x-to-set-euxo-pipefail?rq=1 --- www.spee.ch/docker-entrypoint.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/www.spee.ch/docker-entrypoint.sh b/www.spee.ch/docker-entrypoint.sh index 9d8f562..7c86e93 100755 --- a/www.spee.ch/docker-entrypoint.sh +++ b/www.spee.ch/docker-entrypoint.sh @@ -1,6 +1,6 @@ #!/bin/ash -set -euo pipefail -## This compose file will take a copy of the configuration and install any +set -euxo pipefail +## This docker-entrypoint will take a copy of the configuration and install any ## envvars and then copy any required files into the /app/ directory next to any ## custom files added by the user.