Last active
March 21, 2019 17:17
-
-
Save davidcostadev/2c7723a97dc9512df6e0f076a9df319d to your computer and use it in GitHub Desktop.
Running postgres with docker
This file contains hidden or 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 run --name withmoney-db-postgres -p 5432:5432 -d postgres:9.5 | |
docker run -it --rm --link withmoney-db-postgres postgres:9.5 psql -U postgres -h withmoney-db-postgres |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment