Skip to content

Commit

Permalink
fix(core): Use exec in docker images to forward signals correctly (#…
Browse files Browse the repository at this point in the history
  • Loading branch information
guoard committed Jul 25, 2023
1 parent 533b0ba commit ed9f86b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions docker/images/n8n/docker-entrypoint.sh
Original file line number Diff line number Diff line change
@@ -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

0 comments on commit ed9f86b

Please sign in to comment.