DockerΒΆ

Small helpers exist to help you build docker images from your project.

The docker image name that will get built is defined by the $DOCKER_IMAGE environment variable, and you can change its default value in Makefile.

To build an image, run:

make docker-build

You can customize target image name on the fly:

DOCKER_IMAGE=acme/foobar make docker-build

To run the image, exposing the port on docker server machine:

make docker-run