update : refactor auto-upstall and installation methods

This commit is contained in:
Naveen MR
2024-09-03 20:27:55 +01:00
parent 529a1d3828
commit 1eafae4158
71 changed files with 152 additions and 1040 deletions

View File

@@ -0,0 +1,12 @@
#!/bin/bash
if [ -z "$NOCO_HOME" ]; then
NOCO_HOME="./nocodb"
fi
if [ -d "$NOCO_HOME" ]; then
cd "$NOCO_HOME" || exit
docker compose down
fi
rm -rf "$NOCO_HOME"