Awesome Docker Compose samples
Go to file
Chad Metcalf c600fc36ca
Use assert_success from the bats-assert library.
[ "$status" -eq 0 ] just bails out and its up to you to figure out why.
$output has the stdout/stderr so we could just print that. I think its
worth vendoring the libraries and just using those functions.

Signed-off-by: Chad Metcalf <chad@docker.com>
2020-08-08 14:27:20 -07:00
.github Compliance to awesome repository requirements 2020-03-27 11:38:54 +01:00
angular Use assert_success from the bats-assert library. 2020-08-08 14:27:20 -07:00
apache-php Use assert_success from the bats-assert library. 2020-08-08 14:27:20 -07:00
aspnet-mssql Use assert_success from the bats-assert library. 2020-08-08 14:27:20 -07:00
django Use assert_success from the bats-assert library. 2020-08-08 14:27:20 -07:00
elasticsearch-logstash-kibana Use assert_success from the bats-assert library. 2020-08-08 14:27:20 -07:00
flask Use assert_success from the bats-assert library. 2020-08-08 14:27:20 -07:00
gitea-postgres Use assert_success from the bats-assert library. 2020-08-08 14:27:20 -07:00
lib Use assert_success from the bats-assert library. 2020-08-08 14:27:20 -07:00
nextcloud-postgres Use assert_success from the bats-assert library. 2020-08-08 14:27:20 -07:00
nextcloud-redis-mariadb Use assert_success from the bats-assert library. 2020-08-08 14:27:20 -07:00
nginx-flask-mongo Use assert_success from the bats-assert library. 2020-08-08 14:27:20 -07:00
nginx-flask-mysql Use assert_success from the bats-assert library. 2020-08-08 14:27:20 -07:00
nginx-golang Use assert_success from the bats-assert library. 2020-08-08 14:27:20 -07:00
nginx-golang-mysql Use assert_success from the bats-assert library. 2020-08-08 14:27:20 -07:00
nginx-golang-postgres Use assert_success from the bats-assert library. 2020-08-08 14:27:20 -07:00
prometheus-grafana Use assert_success from the bats-assert library. 2020-08-08 14:27:20 -07:00
react-express-mongodb Use assert_success from the bats-assert library. 2020-08-08 14:27:20 -07:00
react-express-mysql Use assert_success from the bats-assert library. 2020-08-08 14:27:20 -07:00
react-java-mysql Use assert_success from the bats-assert library. 2020-08-08 14:27:20 -07:00
react-rust-postgres Use assert_success from the bats-assert library. 2020-08-08 14:27:20 -07:00
sparkjava Use assert_success from the bats-assert library. 2020-08-08 14:27:20 -07:00
sparkjava-mysql Use assert_success from the bats-assert library. 2020-08-08 14:27:20 -07:00
spring-postgres Use assert_success from the bats-assert library. 2020-08-08 14:27:20 -07:00
traefik-golang Use assert_success from the bats-assert library. 2020-08-08 14:27:20 -07:00
vuejs Use assert_success from the bats-assert library. 2020-08-08 14:27:20 -07:00
wordpress-mysql Use assert_success from the bats-assert library. 2020-08-08 14:27:20 -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.