An open API service indexing awesome lists of open source software.

https://github.com/recruitee/docker-ce-git-make

Base image for CI builds
https://github.com/recruitee/docker-ce-git-make

Last synced: 5 months ago
JSON representation

Base image for CI builds

Awesome Lists containing this project

README

          

# docker-ce-git-make

## Buliding & publishing

```bash
make build
make publish
```

## Usage

```yml
# .circleci/circle.yml
version: 2
jobs:
build:
docker:
- image: recruitee/docker:17.06.0-ce-git-make
steps:
- checkout
- setup_remote_docker
- run: |
make ci-test
```