#!/usr/bin/bash
docker run --replace \
  --name slapbird-postgres-test \
  -e POSTGRES_USER=slapbird \
  -e POSTGRES_PASSWORD=password \
  -e POSTGRES_DB=slapbird \
  --expose 5432 \
  --network slapbird-test-net \
  -d \
  postgres:15-alpine
