Files
nocodb/docker-compose/setup-script/tests/install/setup.sh
2024-05-07 09:22:59 +00:00

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"