From 760eefb096980a47c7f78344733028f09f32acd7 Mon Sep 17 00:00:00 2001 From: David Glick Date: Tue, 18 Feb 2025 22:31:52 -0800 Subject: [PATCH] Add addzopeuser command to docker-entrypoint --- skeleton/docker-entrypoint.sh | 2 ++ 1 file changed, 2 insertions(+) diff --git a/skeleton/docker-entrypoint.sh b/skeleton/docker-entrypoint.sh index 9f49658..0fa530a 100755 --- a/skeleton/docker-entrypoint.sh +++ b/skeleton/docker-entrypoint.sh @@ -160,6 +160,8 @@ elif [[ "$1" == "console" ]]; then exec $sudo $VENVBIN/zconsole debug etc/${CONF} elif [[ "$1" == "run" ]]; then exec $sudo $VENVBIN/zconsole run etc/${CONF} "${@:2}" +elif [[ "$1" == "addzopeuser" ]]; then + exec $sudo $VENVBIN/addzopeuser -c etc/${CONF} "${@:2}" else # Custom exec "$@"