How to connect a Postgres Database running in a local Docker Container from DBeaver

preview_player
Показать описание
How to connect a Postgres Database running on a local Docker Container from DBeaver or any other IDE
Commands to download and launch a Postgres Docker Container:
docker pull postgres
docker run --name mydocker-postgres -p 5433:5432 -e POSTGRES_PASSWORD=password -d postgres
Рекомендации по теме
Комментарии
Автор

Hi tks for the video, but for me, I get this error: The connect attempt failed - localhost:5433, I changed to 5432 and works

diomenezes