Skip to content

Latest commit

 

History

History
17 lines (11 loc) · 245 Bytes

Postgresql.md

File metadata and controls

17 lines (11 loc) · 245 Bytes

PostgreSQL with Docker

Start shell of PostgreSQL

Use bellow command

docker-compose exec postgresql bash 

Access to database

In the container shell, use bellow code

psql --username=${POSTGRES_USER} ${POSTGRES_DB}