How to access postgresql DB running inside a docker via terminal
First make sure you have postgresql-client installed:
sudo apt-get install postgresql-client
Next, you need to find the IP address of the Docker container running PostgreSQL. You can do this by running the following command:
docker inspect -f '{{ran...
imbmax.com1 min read