Files
social-media/backend/scripts/start-infrastructure.sh
Jonathan Bourdon df3e602015
Some checks failed
Backend CI/CD / build_and_deploy (push) Has been cancelled
Frontend CI/CD / build_and_deploy (push) Has been cancelled
feat: pivot to social media workflow app
2026-04-24 12:58:35 -04:00

25 lines
744 B
Bash
Executable File

#!/bin/bash
# Start the container (if not already running)
docker start socialize-postgres 2>/dev/null || docker run \
--cap-add SYS_PTRACE \
-e POSTGRES_USER=sa \
-e POSTGRES_PASSWORD='P@ssword123!' \
-p 5433:5432 \
--name socialize-postgres \
-d postgres:latest
# Wait until Postgres is ready
echo "Waiting for Postgres to be ready..."
until docker exec socialize-postgres pg_isready -U sa >/dev/null 2>&1; do
sleep 1
done
# Create databases if they don't exist
echo "Ensuring development databases exist..."
docker exec -e PGPASSWORD='P@ssword123!' socialize-postgres \
sh -lc "psql -U sa -d postgres -tAc \"SELECT 1 FROM pg_database WHERE datname='socialize'\" | grep -q 1 || createdb -U sa socialize"
echo "✅ Done."