Skip to content

JulienD/docker-python-hello-world

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

2 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Simple Python Flask Dockerized Application#

Build the image using the following command

$ docker build -t friendlyhello .

Run the Docker container using the command shown below.

$ docker run -d -p 4000:80 friendlyhello

Use -e to override the NAME environment variable.

$ docker -e NAME=foobar run -d -p 4000:80 friendlyhello

The application will be accessible at http://localhost:4000

$ curl http://localhost:4000

About

A Hello world Python Flask application Dockerized

Topics

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published