Skip to content

Latest commit

 

History

History
19 lines (15 loc) · 454 Bytes

README.md

File metadata and controls

19 lines (15 loc) · 454 Bytes

Docker Compose

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

Usage instructions for GitLab CI

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

build:
  stage: build
  # set the image
  image: konekto/docker-compose:latest
  # use docker-compose commands 🛳
  script:
    - docker-compose down
    - docker-compose up --build