Skip to content

Instantly share code, notes, and snippets.

@jmelchio
Last active March 30, 2019 17:50
Show Gist options
  • Save jmelchio/dd9ad1590729ed4f3278ee072023c966 to your computer and use it in GitHub Desktop.
Save jmelchio/dd9ad1590729ed4f3278ee072023c966 to your computer and use it in GitHub Desktop.
Start a docker postgres image running exposed on localhost
#!/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