문제점
- "psql" does not exist
- docker로 실행한 postgres db에 연결이 안 되는 문제가 발생!
- 소켓에서 서버에 연결합니다.
- 실패, 데이터베이스 "psql"이 존재하지 않습니다. 라는 에러가 발생
해결
https://yeojin-dev.github.io/blog/postgresql-ubuntu/
psql --username=postgres --dbname=postgres
- 이렇게 입력해주면 현재 시스템 유저와 같은 이름으로 PostgreSQL을 사용할 수 있다고 한다.