diff --git a/1.12/Dockerfile b/1.12/Dockerfile new file mode 100644 index 0000000..4b756aa --- /dev/null +++ b/1.12/Dockerfile @@ -0,0 +1,5 @@ +FROM docker:1.12 +MAINTAINER Tobias Maier + +RUN apk add --no-cache py-pip +RUN pip install docker-compose diff --git a/1.13/Dockerfile b/1.13/Dockerfile new file mode 100644 index 0000000..4be8aab --- /dev/null +++ b/1.13/Dockerfile @@ -0,0 +1,5 @@ +FROM docker:1.13 +MAINTAINER Tobias Maier + +RUN apk add --no-cache py-pip +RUN pip install docker-compose diff --git a/README.md b/README.md index 7a948a9..ff6e2af 100644 --- a/README.md +++ b/README.md @@ -1,4 +1,6 @@ # Docker Compose -This docker image installs docker-compose on top of the `docker:latest` image. +This docker image installs docker-compose on top of the `docker` image. This is very usefull for CI pipelines, which leverage "Docker in Docker". + +There are versions based on different docker versions, e.g. `latest`, `1.13` and `1.12`.