Getting started with PostgreSQL and Python
Start by running your Docker Desktop application. Then via the command line run the following command to pull the latest postgres image and start an instance.
docker run -d -p 5432:5432 -e POSTGRES_PASSWORD=mysecretpassword --name postgres_docker pos...
vic0de.hashnode.dev3 min read