Created
March 10, 2020 18:35
-
-
Save 64lines/6360f6df73b71394bb1c74efb1893d4a to your computer and use it in GitHub Desktop.
[DOCKER] - Install Postgres with Docker
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
docker pull postgres | |
docker run -p 5432:5432 --name some-postgres -e POSTGRES_PASSWORD=postgres -d postgres |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment