Skip to content
This repository was archived by the owner on Oct 23, 2018. It is now read-only.

Postgres

Sean edited this page Sep 21, 2018 · 3 revisions

If you get an error with postgres files not being openable run

docker-compose rm postgres

Inspect postgres via psql

docker compose run postgres -it psql -h postgres -U postgres

Inspect postgres via bash

docker compose run postgres -it bash

Connect via port and psql

psql postgres://postgres@localhost:5433/appdb
Clone this wiki locally