mirror of
https://github.com/n8n-io/n8n.git
synced 2024-11-09 22:24:05 -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
|
||||
if [ "$#" -gt 0 ]; then
|
||||
# Got started with arguments
|
||||
n8n "$@"
|
||||
exec n8n "$@"
|
||||
else
|
||||
# Got started without arguments
|
||||
n8n
|
||||
exec n8n
|
||||
fi
|
||||
|
|
Loading…
Reference in a new issue