Skip to content

Instantly share code, notes, and snippets.

@64lines
Created March 10, 2020 18:35
Show Gist options
  • Save 64lines/6360f6df73b71394bb1c74efb1893d4a to your computer and use it in GitHub Desktop.
Save 64lines/6360f6df73b71394bb1c74efb1893d4a to your computer and use it in GitHub Desktop.
[DOCKER] - Install Postgres with Docker
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