Files
nocodb/docker-compose/setup-script/tests/install/setup.sh
2024-05-02 15:16:14 +00:00

18 lines
218 B
Bash
Executable File

#!/bin/bash
if [ -z "$NOCO_HOME" ]; then
NOCO_HOME="${HOME}/.nocodb"
fi
if [ -d "$NOCO_HOME" ]; then
cd "$NOCO_HOME" || exit
docker compose down
fi
rm -rf "$NOCO_HOME"
clear()
{
echo "clear mocked"
}