Skip to content

Instantly share code, notes, and snippets.

@jacoelho
Created May 20, 2015 05:47
Show Gist options
  • Save jacoelho/f794f9a7ebc35bce29b6 to your computer and use it in GitHub Desktop.
Save jacoelho/f794f9a7ebc35bce29b6 to your computer and use it in GitHub Desktop.
docker example
docker pull postgres:latest
docker run -d --name db postgres:latest
docker build -t web .
docker run -d --name web -p 8000:8000 --link=db:db web:latest python app.py
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment