mirror of
https://github.com/nocobase/nocobase
synced 2024-11-15 11:36:42 +00:00
20 lines
592 B
Bash
Executable File
20 lines
592 B
Bash
Executable File
#!/bin/sh
|
|
set -e
|
|
|
|
nginx
|
|
echo 'nginx started';
|
|
|
|
cd /app/nocobase && yarn nocobase db:auth --retry=30
|
|
cd /app/nocobase && yarn nocobase install -s
|
|
cd /app/nocobase && yarn nocobase upgrade -S
|
|
cd /app/nocobase && yarn start
|
|
|
|
# Run command with node if the first argument contains a "-" or is not a system command. The last
|
|
# part inside the "{}" is a workaround for the following bug in ash/dash:
|
|
# https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=874264
|
|
if [ "${1#-}" != "${1}" ] || [ -z "$(command -v "${1}")" ] || { [ -f "${1}" ] && ! [ -x "${1}" ]; }; then
|
|
set -- node "$@"
|
|
fi
|
|
|
|
exec "$@"
|