Skip to content

Instantly share code, notes, and snippets.

@garystafford
Last active March 23, 2018 20:07
Embed
What would you like to do?
# create container
docker run --name postgres \
-e POSTGRES_USERNAME=postgres \
-e POSTGRES_PASSWORD=postgres1234 \
-e POSTGRES_DB=elections \
-p 5432:5432 \
-d postgres
# view container
docker container ls
# trail container logs
docker logs postgres --follow
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment