Awesome Docker Compose samples
Go to file
Esteban Solano Granados 6ba8ef4937
Migrate aspnet-mssql sample to .NET 5 🚀 (#143)
* Updated MVC app to .NET 5

Signed-off-by: GitHub <noreply@github.com>

* Added SQL Server health check

Signed-off-by: GitHub <noreply@github.com>

* Updated README.md files with ASP.NET samples

Signed-off-by: GitHub <noreply@github.com>
2021-05-21 17:43:15 +01:00
.github Create codeql-analysis.yml (#129) 2021-04-14 09:54:36 +02:00
angular Fix default port mapping and indentation 2020-03-24 00:44:49 +01:00
apache-php update php version to 8.0.3 (#115) 2021-04-06 18:00:09 +02:00
aspnet-mssql Migrate aspnet-mssql sample to .NET 5 🚀 (#143) 2021-05-21 17:43:15 +01:00
django Update dependencies for django and express samples (#128) 2021-04-13 14:29:52 +02:00
elasticsearch-logstash-kibana Add Logstash config to filter example Nginx logs 2020-07-24 02:32:09 +02:00
flask Added `--no-cache-dir` option to all Python pip commands in Dockerfiles (#113) 2021-03-22 10:01:41 +01:00
gitea-postgres Add missing expose field to docker compose files (#124) 2021-04-30 22:29:16 +02:00
minecraft Added Minecraft compose file 2020-08-12 14:59:35 +02:00
nextcloud-postgres Add missing expose field to docker compose files (#124) 2021-04-30 22:29:16 +02:00
nextcloud-redis-mariadb Add missing expose field to docker compose files (#124) 2021-04-30 22:29:16 +02:00
nginx-aspnet-mysql Add nginx-aspnet-mysql implementation (#119) 2021-04-23 16:06:27 +02:00
nginx-flask-mongo Added `--no-cache-dir` option to all Python pip commands in Dockerfiles (#113) 2021-03-22 10:01:41 +01:00
nginx-flask-mysql Add missing expose field to docker compose files (#124) 2021-04-30 22:29:16 +02:00
nginx-golang nginx-golang fix some minor typos (#49) 2020-04-12 21:42:42 +02:00
nginx-golang-mysql Update nginx-golang-mysql dockercompose (#141) 2021-05-21 17:10:59 +01:00
nginx-golang-postgres Add missing expose field to docker compose files (#124) 2021-04-30 22:29:16 +02:00
nginx-wsgi-flask init (#120) 2021-04-06 11:54:06 +02:00
prometheus-grafana prometheus-grafana - switch restart to string (#56) 2020-04-14 12:21:52 +02:00
react-express-mongodb Add missing expose field to docker compose files (#124) 2021-04-30 22:29:16 +02:00
react-express-mysql Update dependencies for django and express samples (#128) 2021-04-13 14:29:52 +02:00
react-java-mysql Add missing expose field to docker compose files (#124) 2021-04-30 22:29:16 +02:00
react-rust-postgres react-rust-postgres: add readmes 2020-03-27 10:14:29 +01:00
sparkjava Fix backend bootstrap error 2020-08-14 22:12:10 +02:00
sparkjava-mysql Add missing expose field to docker compose files (#124) 2021-04-30 22:29:16 +02:00
spring-postgres Add missing expose field to docker compose files (#124) 2021-04-30 22:29:16 +02:00
traefik-golang Adding simple Traefik example. (#44) 2020-04-07 21:32:26 +02:00
vuejs Fix security issues (#102) 2021-03-19 10:26:43 +01:00
wordpress-mysql Add missing expose field to docker compose files (#124) 2021-04-30 22:29:16 +02:00
.gitattributes repo init 2020-02-12 18:16:42 +01:00
CONTRIBUTING.md the 2020-07-27 22:14:01 -05: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
README.md Migrate aspnet-mssql sample to .NET 5 🚀 (#143) 2021-05-21 17:43:15 +01:00
awesome-compose.jpg repo init 2020-02-12 18:16:42 +01:00

README.md

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.

Note:

The following samples are intended for use in local development environments such as project setups, tinkering with software stacks, etc. These samples must not be deployed in production environments.

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.