카테고리 없음
[Docker][PostgreSQL] 접속
포시
2023. 12. 14. 14:18
728x90
# 컨테이너 확인
docker ps
# 컨테이너 접속
docker exec -it {container_id} /bin/bash
# PostgreSQL 접속
psql -U postgres -d postgres -h localhost -p 5432
# USER 조회
select * from PG_SHADOW;
728x90