CREATE A POSTGRESQL DATABASE IN 3 MINUTES WITH DOCKER

Here is a quick guide on how to easily and quickly spin up a PostgreSQL database inside of a docker container. If you found this helpful leave a like and subscribe for more! :D written guide: Commands used docker pull postgres docker run -d -p 5432:5432 -e POSTGRES_PASSWORD=postgres postgres Official docker hub potgres image:
Back to Top