- Notifications
You must be signed in to change notification settings - Fork345
Basic Python Flask app in Docker which prints the hostname and IP of the container
License
NotificationsYou must be signed in to change notification settings
lvthillo/python-flask-docker
Folders and files
Name | Name | Last commit message | Last commit date | |
---|---|---|---|---|
Repository files navigation
Basic Python Flask app in Docker which prints the hostname and IP of the container
Build the Docker image manually by cloning the Git repo.
$ git clone https://github.com/lvthillo/python-flask-docker.git$ docker build -t lvthillo/python-flask-docker .
You can also just download the existing image fromDockerHub.
docker pull lvthillo/python-flask-docker
Create a container from the image.
$ docker run --name my-container -d -p 8080:8080 lvthillo/python-flask-docker
Now visithttp://localhost:8080
The hostname of the container is 6095273a4e9b and its IP is 172.17.0.2.
Verify by checking the container ip and hostname (ID):
$ docker inspect -f '{{range .NetworkSettings.Networks}}{{.IPAddress}}{{end}}' my-container172.17.0.2$ docker inspect -f '{{ .Config.Hostname }}' my-container6095273a4e9b
About
Basic Python Flask app in Docker which prints the hostname and IP of the container
Topics
Resources
License
Uh oh!
There was an error while loading.Please reload this page.
Stars
Watchers
Forks
Releases
No releases published
Packages0
No packages published
Uh oh!
There was an error while loading.Please reload this page.
Contributors3
Uh oh!
There was an error while loading.Please reload this page.