mirror of
https://github.com/n8n-io/n8n.git
synced 2025-01-12 05:17:28 -08:00
fix(core): Use exec
in docker images to forward signals correctly (#6732)
This commit is contained in:
parent
533b0bac13
commit
ed9f86bb95
|
@ -1,8 +1,8 @@
|
||||||
#!/bin/sh
|
#!/bin/sh
|
||||||
if [ "$#" -gt 0 ]; then
|
if [ "$#" -gt 0 ]; then
|
||||||
# Got started with arguments
|
# Got started with arguments
|
||||||
n8n "$@"
|
exec n8n "$@"
|
||||||
else
|
else
|
||||||
# Got started without arguments
|
# Got started without arguments
|
||||||
n8n
|
exec n8n
|
||||||
fi
|
fi
|
||||||
|
|
Loading…
Reference in a new issue