A hello world docker example using the python bottle framework and the gunicorn WSGI server.
654
This is a simple bottle application which uses the devries/bottle base image. The application serves a single page which uses the bottle template engine to provide a simple hello world message with the container's IP address.
You can build this container using the command
docker build -t devries/hellobottle .
or you can pull the image from the docker hub using the command
docker pull devries/hellobottle
To run the container use the command:
docker run -d -p 8080:8080 devries/hellobottle
The Dockerfile runs the gunicorn WSGI server.
Content type
Image
Digest
sha256:aae910527…
Size
186.3 MB
Last updated
over 9 years ago
docker pull devries/hellobottle