1
0
mirror of https://github.com/tmaier/docker-compose synced 2024-11-22 16:01:59 +01:00

Add versions based on different docker versions

This commit is contained in:
Tobias L. Maier 2017-01-26 16:56:29 +01:00
parent 671313da04
commit 46eb98e290
3 changed files with 13 additions and 1 deletions

5
1.12/Dockerfile Normal file

@ -0,0 +1,5 @@
FROM docker:1.12
MAINTAINER Tobias Maier <tobias.maier@baucloud.com>
RUN apk add --no-cache py-pip
RUN pip install docker-compose

5
1.13/Dockerfile Normal file

@ -0,0 +1,5 @@
FROM docker:1.13
MAINTAINER Tobias Maier <tobias.maier@baucloud.com>
RUN apk add --no-cache py-pip
RUN pip install docker-compose

@ -1,4 +1,6 @@
# Docker Compose # 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". 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`.