Awesome Docker Compose samples
Go to file
Chad Metcalf 702ec96821
Adding a Makefile and basic tests.
This approach uses bats to create a generic docker-compose test. It
checks that images are pullable, projects are buildable, up works, and
if ports are exposed that something is listening.

The tests can be tailored for each example. As long as they are the same
though, you can edit lib/test.bats.example and then `make update-tests`
and all the tests will be synced.

Signed-off-by: Chad Metcalf <chad@docker.com>
2020-08-08 14:26:52 -07:00
.github Compliance to awesome repository requirements 2020-03-27 11:38:54 +01:00
angular Adding a Makefile and basic tests. 2020-08-08 14:26:52 -07:00
apache-php Adding a Makefile and basic tests. 2020-08-08 14:26:52 -07:00
aspnet-mssql Adding a Makefile and basic tests. 2020-08-08 14:26:52 -07:00
django Adding a Makefile and basic tests. 2020-08-08 14:26:52 -07:00
elasticsearch-logstash-kibana Adding a Makefile and basic tests. 2020-08-08 14:26:52 -07:00
flask Adding a Makefile and basic tests. 2020-08-08 14:26:52 -07:00
gitea-postgres Adding a Makefile and basic tests. 2020-08-08 14:26:52 -07:00
lib Adding a Makefile and basic tests. 2020-08-08 14:26:52 -07:00
nextcloud-postgres Adding a Makefile and basic tests. 2020-08-08 14:26:52 -07:00
nextcloud-redis-mariadb Adding a Makefile and basic tests. 2020-08-08 14:26:52 -07:00
nginx-flask-mongo Adding a Makefile and basic tests. 2020-08-08 14:26:52 -07:00
nginx-flask-mysql Adding a Makefile and basic tests. 2020-08-08 14:26:52 -07:00
nginx-golang Adding a Makefile and basic tests. 2020-08-08 14:26:52 -07:00
nginx-golang-mysql Adding a Makefile and basic tests. 2020-08-08 14:26:52 -07:00
nginx-golang-postgres Adding a Makefile and basic tests. 2020-08-08 14:26:52 -07:00
prometheus-grafana Adding a Makefile and basic tests. 2020-08-08 14:26:52 -07:00
react-express-mongodb Adding a Makefile and basic tests. 2020-08-08 14:26:52 -07:00
react-express-mysql Adding a Makefile and basic tests. 2020-08-08 14:26:52 -07:00
react-java-mysql Adding a Makefile and basic tests. 2020-08-08 14:26:52 -07:00
react-rust-postgres Adding a Makefile and basic tests. 2020-08-08 14:26:52 -07:00
sparkjava Adding a Makefile and basic tests. 2020-08-08 14:26:52 -07:00
sparkjava-mysql Adding a Makefile and basic tests. 2020-08-08 14:26:52 -07:00
spring-postgres Adding a Makefile and basic tests. 2020-08-08 14:26:52 -07:00
traefik-golang Adding a Makefile and basic tests. 2020-08-08 14:26:52 -07:00
vuejs Adding a Makefile and basic tests. 2020-08-08 14:26:52 -07:00
wordpress-mysql Adding a Makefile and basic tests. 2020-08-08 14:26:52 -07:00
.gitattributes repo init 2020-02-12 18:16:42 +01:00
awesome-compose.jpg repo init 2020-02-12 18:16:42 +01:00
CONTRIBUTING.md Compliance to awesome repository requirements 2020-03-27 11:38:54 +01:00
LICENSE Update License to CC0 2020-03-26 09:44:12 +01:00
MAINTAINERS Compliance to awesome repository requirements 2020-03-27 11:38:54 +01:00
Makefile Adding a Makefile and basic tests. 2020-08-08 14:26:52 -07:00
README.md Merge pull request #71 from thyrlian/master 2020-07-24 11:34:58 +02:00

Awesome Compose Awesome

logo

A curated list of Docker Compose samples.

These samples provide a starting point for how to integrate different services using a Compose file and to manage their deployment with Docker Compose.

Contents

Samples of Docker Compose applications with multiple integrated services

Single service samples

Basic setups for different platforms (not production ready - useful for personal use)

Getting started

These instructions will get you through the bootstrap phase of creating and deploying samples of containerized applications with Docker Compose.

Prerequisites

Running a sample

The root directory of each sample contains the docker-compose.yaml which describes the configuration of service components. All samples can be run in a local environment by going into the root directory of each one and executing:

docker-compose up -d

Check the README.md of each sample to get more details on the structure and what is the expected output. To stop and remove all containers of the sample application run:

docker-compose down

Contribute

We welcome examples that help people understand how to use Docker Compose for common applications. Check the Contribution Guide for more details.