Skip to content
This repository has been archived by the owner on May 23, 2023. It is now read-only.

An Alpine based CircleCI build image that includes `docker` and `docker-compose`

License

Notifications You must be signed in to change notification settings

telus-agcg-archive/docker-circleci

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

10 Commits
 
 
 
 
 
 

Repository files navigation

CircleCI Build Image

An Alpine based Docker image that meets the requirements of a CircleCI 2.0 primary image. This image includes docker and docker-compose allowing for builds to take advantage of your existing configuration.

Usage

List this image as the primary in .circleci/config.yml then run the docker-compose commands of your choosing.

version: 2
jobs:
  build:
    docker:
      - image: technekes/circleci:alpine

    working_directory: /tmp/app

    steps:
      - checkout
      - setup_remote_docker

      - run:
          name: Build the image(s)
          command: |
            docker-compose build

      - run:
          name: Run tests
          command: |
            docker-compose run ci

About

An Alpine based CircleCI build image that includes `docker` and `docker-compose`

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published