# PostgreSQL 관련

# docker 설치

$ docker pull postgres:latest
$ docker run --name pgsql -d -p 5432:5432 -e POSTGRES_PASSWORD=postgresql postgres
1
2