Browse Source

feat(nocodb): add start-local.sh

pull/5402/head
Wing-Kam Wong 2 years ago
parent
commit
67ca40d340
  1. 14
      packages/nocodb/docker/start-local.sh

14
packages/nocodb/docker/start-local.sh

@ -0,0 +1,14 @@
#!/bin/sh
FILE="/usr/src/app/package.json"
if [ ! -z "${NC_TOOL_DIR}" ]; then
mkdir -p $NC_TOOL_DIR
fi
if [ ! -f "$FILE" ]
then
tar -xzf /usr/src/appEntry/app.tar.gz -C /usr/src/app/
fi
node docker/index.js
Loading…
Cancel
Save