Last active
March 30, 2019 17:50
-
-
Save jmelchio/dd9ad1590729ed4f3278ee072023c966 to your computer and use it in GitHub Desktop.
Start a docker postgres image running exposed on localhost
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
#!/usr/bin/env bash | |
docker run --name docker-postgres --rm -p5432:5432 -d postgres | |
# That's all folks !! |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment