Ecosyste.ms: Awesome

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

Awesome Lists | Featured Topics | Projects

https://github.com/yakimka/docker-and-compose

Docker image with docker and compose
https://github.com/yakimka/docker-and-compose

docker docker-compose dockerfile

Last synced: about 1 month ago
JSON representation

Docker image with docker and compose

Awesome Lists containing this project

README

        

# Docker image with docker and docker-compose

[Docker](https://hub.docker.com/_/docker/) with [Docker Compose (python3)](https://github.com/docker/compose) installed for CI.

## Usage

```bash
docker pull yakim/docker-and-compose
```

[Docker Hub](https://hub.docker.com/r/yakim/docker-and-compose)

## CI

You can use it with ci and docker-in-docker.

```yml
image: yakimka/docker-and-compose

services:
- docker:dind

test:
script:
- docker-compose build
- docker-compose run --rm django make ci-test
```