Skip to content

Commit

Permalink
Add a script to start a local docker psql server
Browse files Browse the repository at this point in the history
  • Loading branch information
Olical committed May 31, 2024
1 parent 9c609bc commit 2d63424
Showing 1 changed file with 10 additions and 0 deletions.
10 changes: 10 additions & 0 deletions dev/sql/pg-docker.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
#!/usr/bin/env bash

docker run \
--name conjure_postgres_db \
--rm \
-p 5432:5432 \
-e POSTGRES_USER=postgres \
-e POSTGRES_PASSWORD=postgres \
-e POSTGRES_DB=postgres \
postgres

0 comments on commit 2d63424

Please sign in to comment.