Files
n8n-enterprise-unlocked/docker/images/n8n-custom/docker-entrypoint.sh
T

9 lines
125 B
Bash
Executable File

#!/bin/sh
if [ "$#" -gt 0 ]; then
# Got started with arguments
node "$@"
else
# Got started without arguments
n8n
fi