From ed55c696cd083bfaa5429082a9c5edd4ebde0cd8 Mon Sep 17 00:00:00 2001 From: Sebastien Castiel Date: Tue, 5 Dec 2023 17:39:05 -0500 Subject: First version --- start-local-db.sh | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100755 start-local-db.sh (limited to 'start-local-db.sh') diff --git a/start-local-db.sh b/start-local-db.sh new file mode 100755 index 0000000..c97173d --- /dev/null +++ b/start-local-db.sh @@ -0,0 +1,11 @@ +result=$(docker ps | grep postgres) +if [ $? -eq 0 ]; +then + echo "postgres is already running, doing nothing" +else + echo "postgres is not running, starting it" + docker rm postgres --force + mkdir -p postgres-data + docker run --name postgres -d -p 5432:5432 -e POSTGRES_PASSWORD=1234 -v ./postgres-data:/var/lib/postgresql/data postgres + sleep 5 # Wait for postgres to start +fi -- cgit v1.3