Files
Automata/docker/images/n8n/docker-entrypoint.sh

9 lines
134 B
Bash
Executable File

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