mirror of
https://github.com/nocodb/nocodb.git
synced 2026-02-02 02:57:23 +00:00
13 lines
176 B
Bash
Executable File
13 lines
176 B
Bash
Executable File
#!/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"
|