1
0
mirror of https://github.com/tmaier/docker-compose synced 2024-11-22 16:01:59 +01:00
Container with Docker + Docker Compose - good for CI
Go to file
2018-04-29 05:17:40 +02:00
1.12 Fix ARG COMPOSE_VERSION being defind outside build stage 2018-04-29 05:17:40 +02:00
1.13 Fix ARG COMPOSE_VERSION being defind outside build stage 2018-04-29 05:17:40 +02:00
17 Fix ARG COMPOSE_VERSION being defind outside build stage 2018-04-29 05:17:40 +02:00
17.03 Fix ARG COMPOSE_VERSION being defind outside build stage 2018-04-29 05:17:40 +02:00
17.06 Fix ARG COMPOSE_VERSION being defind outside build stage 2018-04-29 05:17:40 +02:00
17.09 Fix ARG COMPOSE_VERSION being defind outside build stage 2018-04-29 05:17:40 +02:00
17.12 Fix ARG COMPOSE_VERSION being defind outside build stage 2018-04-29 05:17:40 +02:00
18 Fix ARG COMPOSE_VERSION being defind outside build stage 2018-04-29 05:17:40 +02:00
18.02 Fix ARG COMPOSE_VERSION being defind outside build stage 2018-04-29 05:17:40 +02:00
latest Fix ARG COMPOSE_VERSION being defind outside build stage 2018-04-29 05:17:40 +02:00
LICENSE Initial commit 2017-01-04 01:06:01 +01:00
README.md Pin docker-compose versions to the time of release 2018-04-19 23:42:32 +10:00

Docker Compose

Docker Automated buil Docker Pulls GitHub issues GitHub stars

This docker image installs docker-compose on top of the docker image. This is very useful for CI pipelines, which leverage "Docker in Docker".

Docker versions supported

There are versions based on different docker versions, e.g. latest, 17.06, 17.03 and 1.13.

docker-compose matches the latest minor version available when the docker release was made. Eg, 17.06 includes docker-compose 1.15.0. The latest tag always includes the latest docker-compose build.

Please open an issue or a pull request (preferred) at GitHub, if a version is missing.

Usage instructions for GitLab CI

You may use it like this in your .gitlab-ci.yml file.

image: tmaier/docker-compose:latest

services:
  - docker:dind

before_script:
  - docker info
  - docker-compose --version

build image:
  stage: build
  script:
    - docker-compose build

Author

Tobias L. Maier for BauCloud GmbH