From bcf15c186d4981ce7b2336d09646d3621da8cf2a Mon Sep 17 00:00:00 2001 From: Matt Griswold Date: Sat, 4 Apr 2020 19:27:47 +0000 Subject: [PATCH] skip env vars for entrypoint --- dockerfiles/super_node/entrypoint.sh | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/dockerfiles/super_node/entrypoint.sh b/dockerfiles/super_node/entrypoint.sh index 1b101dd7..321af8e4 100755 --- a/dockerfiles/super_node/entrypoint.sh +++ b/dockerfiles/super_node/entrypoint.sh @@ -58,7 +58,8 @@ DEFAULT_OPTIONS="--config=$VDB_CONFIG_FILE" VDB_FULL_CL=${VDB_FULL_CL:-$VDB_COMMAND $DEFAULT_OPTIONS} echo running: ./vulcanizedb $VDB_FULL_CL $@ -./vulcanizedb $VDB_FULL_CL $@ +# XXX need to lose the env vars +./vulcanizedb $@ rv=$? if [ $rv != 0 ]; then