File size: 288 Bytes
0cd706e 482cbdb 0cd706e 482cbdb 0cd706e 482cbdb 0cd706e |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 |
#!/bin/sh
app_data_dir="/home/node/.n8n"
if [ ! -d "$app_data_dir" ]; then
mkdir -p "$app_data_dir"
fi
# 如果使用非 root 用户
chown -R node:node /home/node
if [ "$#" -gt 0 ]; then
# Got started with arguments
exec "$@"
else
# Got started without arguments
exec n8n
fi |