Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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
- Host: GitHub
- URL: https://github.com/yakimka/docker-and-compose
- Owner: yakimka
- Created: 2020-01-23T15:03:02.000Z (about 5 years ago)
- Default Branch: master
- Last Pushed: 2020-01-23T16:13:28.000Z (about 5 years ago)
- Last Synced: 2024-11-14T10:43:33.836Z (3 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
```