Spaces:
Running
Running
File size: 284 Bytes
0cd706e |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 |
#!/bin/sh
app_data_dir="/home/node/.n8n"
if [ ! -d "$app_data_dir" ]; then
mkdir -p "$app_data_dir"
fi
chown -R node:node /home/node
if [ "$#" -gt 0 ]; then
# Got started with arguments
exec su-exec node "$@"
else
# Got started without arguments
exec su-exec node n8n
fi |