Estimated reading time: 11 minutes
On this page you build a simple Python web application running on DockerCompose. The application uses the Flask framework and maintains a hit counter inRedis. While the sample uses Python, the concepts demonstrated here should beunderstandable even if you’re not familiar with it.
The environment key sets the FLASKENV environment variable, which tells flask run to run in development mode and reload the code on change. This mode should only be used in development. Step 6: Re-build and run the app with Compose. From your project directory, type docker-compose up to build the app with the updated Compose file, and run it. With docker data volumes it's very easy to expose xorg's unix domain socket inside the container. For example, with a Dockerfile like this: FROM debian RUN apt-get update RUN apt-get install -qqy x11-apps ENV DISPLAY:0 CMD xeyes. Boot2Docker is a lightweight Linux distribution made specifically to run Docker containers. It runs completely from RAM, is a 45MB download and boots quickly. Recent Linux Kernel, Docker pre-installed and ready-to-use; VM guest additions (VirtualBox, Parallels, VMware, XenServer) Container persistence via disk automount on /var/lib. Download Ubuntu desktop, Ubuntu Server, Ubuntu for Raspberry Pi and IoT devices, Ubuntu Core and all the Ubuntu flavours. Ubuntu is an open-source software platform that runs everywhere from the PC to the server and the cloud.
Make sure you have already installed both Docker Engineand Docker Compose. You don’t need to install Python or Redis, asboth are provided by Docker images.
Define the application dependencies.
Create a directory for the project:
Create a file called app.py
in your project directory and paste this in:
In this example, redis
is the hostname of the redis container on theapplication’s network. We use the default port for Redis, 6379
.
Handling transient errors
Note the way the
get_hit_count
function is written. This basic retryloop lets us attempt our request multiple times if the redis service isnot available. This is useful at startup while the application comesonline, but also makes our application more resilient if the Redisservice needs to be restarted anytime during the app’s lifetime. In acluster, this also helps handling momentary connection drops betweennodes.
Create another file called requirements.txt
in your project directory andpaste this in:
In this step, you write a Dockerfile that builds a Docker image. The imagecontains all the dependencies the Python application requires, including Pythonitself.
In your project directory, create a file named Dockerfile
and paste thefollowing:
This tells Docker to:
/code
.flask
command.requirements.txt
and install the Python dependencies..
in the project to the workdir .
in the image.flask run
.For more information on how to write Dockerfiles, see theDocker user guideand the Dockerfile reference.
Create a file called docker-compose.yml
in your project directory and pastethe following:
This Compose file defines two services: web
and redis
.
The web
service uses an image that’s built from the Dockerfile
in the current directory.It then binds the container and the host machine to the exposed port, 5000
. This example service uses the default port for the Flask web server, 5000
.
The redis
service uses a public Redis image pulled from the Docker Hub registry.
From your project directory, start up your application by running docker-compose up
.
Compose pulls a Redis image, builds an image for your code, and starts theservices you defined. In this case, the code is statically copied into the image at build time.
Enter http://localhost:5000/ in a browser to see the application running.
If you’re using Docker natively on Linux, Docker Desktop for Mac, or Docker Desktop forWindows, then the web app should now be listening on port 5000 on yourDocker daemon host. Point your web browser to http://localhost:5000 tofind the Hello World
message. If this doesn’t resolve, you can also tryhttp://127.0.0.1:5000.
If you’re using Docker Machine on a Mac or Windows, use docker-machine ipMACHINE_VM
to get the IP address of your Docker host. Then, openhttp://MACHINE_VM_IP:5000
in a browser.
You should see a message in your browser saying:
Refresh the page.
The number should increment.
Switch to another terminal window, and type docker image ls
to list local images.
Listing images at this point should return redis
and web
.
You can inspect images with docker inspect <tag or id>
.
Stop the application, either by running docker-compose down
from within your project directory in the second terminal, or byhitting CTRL+C in the original terminal where you started the app.
Edit docker-compose.yml
in your project directory to add abind mount for the web
service:
The new volumes
key mounts the project directory (current directory) on thehost to /code
inside the container, allowing you to modify the code on thefly, without having to rebuild the image. The environment
key sets theFLASK_ENV
environment variable, which tells flask run
to run in developmentmode and reload the code on change. This mode should only be used in development.
From your project directory, type docker-compose up
to build the app with the updated Compose file, and run it.
Check the Hello World
message in a web browser again, and refresh to see thecount increment.
Shared folders, volumes, and bind mounts
If your project is outside of the Users
directory (cd ~
), then youneed to share the drive or location of the Dockerfile and volume you are using.If you get runtime errors indicating an application file is not found, a volumemount is denied, or a service cannot start, try enabling file or drive sharing.Volume mounting requires shared drives for projects that live outside ofC:Users
(Windows) or /Users
(Mac), and is required for any project onDocker Desktop for Windows that uses Linux containers.For more information, see File sharing on Dockerfor Mac, and the general examples on how toManage data in containers.
If you are using Oracle VirtualBox on an older Windows OS, you might encounter an issue with shared folders as described in this VB troubleticket. Newer Windows systems meet therequirements for Docker Desktop for Windows and do notneed VirtualBox.
Because the application code is now mounted into the container using a volume,you can make changes to its code and see the changes instantly, without havingto rebuild the image.
Change the greeting in app.py
and save it. For example, change the Hello World!
message to Hello from Docker!
:
Refresh the app in your browser. The greeting should be updated, and thecounter should still be incrementing.
If you want to run your services in the background, you can pass the -d
flag(for “detached” mode) to docker-compose up
and use docker-compose ps
tosee what is currently running:
The docker-compose run
command allows you to run one-off commands for yourservices. For example, to see what environment variables are available to theweb
service:
See docker-compose --help
to see other available commands. You can also install command completion for the bash and zsh shell, which also shows you available commands.
If you started Compose with docker-compose up -d
, stopyour services once you’ve finished with them:
You can bring everything down, removing the containers entirely, with the down
command. Pass --volumes
to also remove the data volume used by the Rediscontainer:
At this point, you have seen the basics of how Compose works.