Skip to content

Latest commit

 

History

History
35 lines (21 loc) · 557 Bytes

File metadata and controls

35 lines (21 loc) · 557 Bytes

Postgres Database

About

This project uses PostgreSQL and Adminer

Getting Started

Build Docker Images

The Postgres database is started from the docker-compose.yml in the project root.

To only start the Postgres database and Adminer the below commands can be used:

docker-compose up --build postgres-db

Shut Down Docker Containers

docker-compose down

Remove Postgres Data

Remove pgdata to reset the database:

rm -rf backend/postgres_db/pgdata

Access Adminer

At http://localhost:7000