From 42754a01c0487cf687ace8654157292763c7483c Mon Sep 17 00:00:00 2001 From: Christopher Hubing Date: Sat, 4 Apr 2020 20:39:16 -0400 Subject: [PATCH] Update entrypoint.sh --- container_files/usr-local-bin/entrypoint.sh | 2 ++ 1 file changed, 2 insertions(+) diff --git a/container_files/usr-local-bin/entrypoint.sh b/container_files/usr-local-bin/entrypoint.sh index f220b548..4c4a9099 100755 --- a/container_files/usr-local-bin/entrypoint.sh +++ b/container_files/usr-local-bin/entrypoint.sh @@ -5,8 +5,10 @@ prepConf if [ "$#" -eq 0 ]; then + echo no component set to run finishPrep exec /usr/bin/supervisord -c /opt/tier-support/supervisord.conf else + echo executing $@ exec "$@" fi