m / docker-entrypoint.sh
musarehmani100's picture
Create docker-entrypoint.sh
0f70a12 verified
raw
history blame
No virus
133 Bytes
#!/bin/sh
if [ "$#" -gt 0 ]; then
# Got started with arguments
exec n8n "$@"
else
# Got started without arguments
exec n8n
fi