From baf678822ff95255cf9d9257758a10bba3b1816d Mon Sep 17 00:00:00 2001 From: Ashley Sommer Date: Tue, 7 Jul 2020 15:50:13 +1000 Subject: [PATCH] pass-through cli arguments to droppy start Allow docker run to pass arbitrary command line arguments into droppy start --- docker-start.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docker-start.sh b/docker-start.sh index 2901fc314..b2f3f9a6d 100755 --- a/docker-start.sh +++ b/docker-start.sh @@ -16,4 +16,4 @@ mkdir -p /files chown -R droppy:droppy /config chown droppy:droppy /files -exec /bin/su -p -s "/bin/sh" -c "exec /usr/bin/droppy start --color -f /files -c /config" droppy +exec /bin/su -p -s "/bin/sh" -c "exec /usr/bin/droppy start --color -f /files -c /config $@" droppy