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: 4 months ago
JSON representation
Docker image with docker and compose
- Host: GitHub
- URL: https://github.com/yakimka/docker-and-compose
- Owner: yakimka
- Created: 2020-01-23T15:03:02.000Z (over 5 years ago)
- Default Branch: master
- Last Pushed: 2020-01-23T16:13:28.000Z (over 5 years ago)
- Last Synced: 2025-01-14T03:49:36.742Z (6 months ago)
- Topics: docker, docker-compose, dockerfile
- Language: Dockerfile
- Size: 1.95 KB
- Stars: 0
- Watchers: 3
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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-composeservices:
- docker:dindtest:
script:
- docker-compose build
- docker-compose run --rm django make ci-test
```