Skip to content
This repository has been archived by the owner on Nov 3, 2021. It is now read-only.

Content for a talk at the IndyPy meetup on January 10, 2017

License

Notifications You must be signed in to change notification settings

mattrasband/docker_python_and_you

Repository files navigation

Docker, Python, and You

Slides

Build

Builds the image, after this it's immutable in the current form:

$ docker build -t myapp .

Note, there is an implicit tag of latest.

Run

Runs the image (making a container), since docker does network isolation you need to explicitly list the exposed port(s):

$ docker run --rm -it -p 5000:5000 myapp

About

Content for a talk at the IndyPy meetup on January 10, 2017

Resources

License

Stars

Watchers

Forks

Packages

No packages published