Awesome Docker Compose samples
Go to file
Chad Metcalf 5185cedf4e
Fixing Mac vs Linux bash shell'ism.
Signed-off-by: Chad Metcalf <chad@docker.com>
2020-08-08 14:27:04 -07:00
.github Compliance to awesome repository requirements 2020-03-27 11:38:54 +01:00
angular Fixing Mac vs Linux bash shell'ism. 2020-08-08 14:27:04 -07:00
apache-php Fixing Mac vs Linux bash shell'ism. 2020-08-08 14:27:04 -07:00
aspnet-mssql Fixing Mac vs Linux bash shell'ism. 2020-08-08 14:27:04 -07:00
django Fixing Mac vs Linux bash shell'ism. 2020-08-08 14:27:04 -07:00
elasticsearch-logstash-kibana Fixing Mac vs Linux bash shell'ism. 2020-08-08 14:27:04 -07:00
flask Fixing Mac vs Linux bash shell'ism. 2020-08-08 14:27:04 -07:00
gitea-postgres Fixing Mac vs Linux bash shell'ism. 2020-08-08 14:27:04 -07:00
lib Fixing Mac vs Linux bash shell'ism. 2020-08-08 14:27:04 -07:00
nextcloud-postgres Fixing Mac vs Linux bash shell'ism. 2020-08-08 14:27:04 -07:00
nextcloud-redis-mariadb Fixing Mac vs Linux bash shell'ism. 2020-08-08 14:27:04 -07:00
nginx-flask-mongo Fixing Mac vs Linux bash shell'ism. 2020-08-08 14:27:04 -07:00
nginx-flask-mysql Fixing Mac vs Linux bash shell'ism. 2020-08-08 14:27:04 -07:00
nginx-golang Fixing Mac vs Linux bash shell'ism. 2020-08-08 14:27:04 -07:00
nginx-golang-mysql Fixing Mac vs Linux bash shell'ism. 2020-08-08 14:27:04 -07:00
nginx-golang-postgres Fixing Mac vs Linux bash shell'ism. 2020-08-08 14:27:04 -07:00
prometheus-grafana Fixing Mac vs Linux bash shell'ism. 2020-08-08 14:27:04 -07:00
react-express-mongodb Fixing Mac vs Linux bash shell'ism. 2020-08-08 14:27:04 -07:00
react-express-mysql Fixing Mac vs Linux bash shell'ism. 2020-08-08 14:27:04 -07:00
react-java-mysql Fixing Mac vs Linux bash shell'ism. 2020-08-08 14:27:04 -07:00
react-rust-postgres Fixing Mac vs Linux bash shell'ism. 2020-08-08 14:27:04 -07:00
sparkjava Fixing Mac vs Linux bash shell'ism. 2020-08-08 14:27:04 -07:00
sparkjava-mysql Fixing Mac vs Linux bash shell'ism. 2020-08-08 14:27:04 -07:00
spring-postgres Fixing Mac vs Linux bash shell'ism. 2020-08-08 14:27:04 -07:00
traefik-golang Fixing Mac vs Linux bash shell'ism. 2020-08-08 14:27:04 -07:00
vuejs Fixing Mac vs Linux bash shell'ism. 2020-08-08 14:27:04 -07:00
wordpress-mysql Fixing Mac vs Linux bash shell'ism. 2020-08-08 14:27:04 -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.