1
0
mirror of https://github.com/tmaier/docker-compose synced 2024-11-22 07:51:58 +01:00
Container with Docker + Docker Compose - good for CI
Go to file
2021-04-15 09:51:19 +09:00
hooks Fix loop of test 2018-04-29 19:35:40 +02:00
DOCKER_AND_COMPOSE_VERSION_MATRIX Remove prior v19 from version matrix file 2021-04-15 09:51:19 +09:00
docker-compose.test.yml Remove individual build directories 2018-04-29 07:02:09 +02:00
Dockerfile Remove prior v19 from version matrix file 2021-04-15 09:51:19 +09:00
LICENSE Initial commit 2017-01-04 01:06:01 +01:00
README.md Fix README 2021-04-08 14:56:54 +09: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, 20.10, 19.03 and 1.13.

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

All available Docker Engine versions and the respective Docker Compose versions are defined in DOCKER_AND_COMPOSE_VERSION_MATRIX.

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

How to add support for a new docker version to this repository?

You must only provide a Pull Request for the file DOCKER_AND_COMPOSE_VERSION_MATRIX.

DOCKER_AND_COMPOSE_VERSION_MATRIX specifies in the first column the docker version. The second column states the most recent release of docker-compose when the docker version has been released.

You can see the latest matching versions of both by checking their release notes:

Common issues and possible fixes

ERROR: error during connect: Get http://docker:2375/v1.40/info: dial tcp: ...

As of version 19.03, docker:dind will automatically generate TLS certificates and require using them for communication.

See https://github.com/tmaier/docker-compose/issues/21#issuecomment-578780163

Author

Tobias L. Maier for BauCloud GmbH