I'm trying to create PostgreSQL DB inside docker container and connect to it from my local machine. Running docker-compose up -d
with that inside docker-compose.yml
:
version: '3.5'
services:
db:
image: postgres:12.2
restart: always
ports:
- "5432:5432"
environment:
POSTGRES_DB: db
POSTGRES_USER: root
POSTGRES_PASSWORD: root
ended successfully. No crashes, errors of something. But, when I'm trying to connect to it with pgAdmin4
with these credentials:
- Host name/address: localhost
- Port: 5432
- Maintenance database: db
- Username: root
- Password: root
it says to me:
Unable to connect to server:
FATAL: password authentication failed for user "root"
My OS: Windows 10 build(1809)
PostgreSQL version (installed on local machine): 12
Docker version: 19.03.13, build 4484c46d9d
UPD 1:
After re-creating container with different ports (now it is 5433:5433), pgAdmin4
error changed:
Unable to connect to server:
server closed the connection unexpectedly This probably means the server terminated abnormally before or while processing the request.
You are trying to connect to 5432 port on localhost. Are you sure your container is taking the host IP?
To make the container run with the host IP run the container with --network host option.
Note that if you use '--network host' option, then portmapping '-p' option is not needed. Read https://docs.docker.com/network/host/ for more information.