Awesome Docker Compose samples
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
Esteban Solano Granados 6ba8ef4937
Migrate aspnet-mssql sample to .NET 5 🚀 (#143)
3 years ago
.github Create codeql-analysis.yml (#129) 3 years ago
angular Fix default port mapping and indentation 4 years ago
apache-php update php version to 8.0.3 (#115) 3 years ago
aspnet-mssql Migrate aspnet-mssql sample to .NET 5 🚀 (#143) 3 years ago
django Update dependencies for django and express samples (#128) 3 years ago
elasticsearch-logstash-kibana Add Logstash config to filter example Nginx logs 4 years ago
flask Added `--no-cache-dir` option to all Python pip commands in Dockerfiles (#113) 3 years ago
gitea-postgres Add missing expose field to docker compose files (#124) 3 years ago
minecraft Added Minecraft compose file 4 years ago
nextcloud-postgres Add missing expose field to docker compose files (#124) 3 years ago
nextcloud-redis-mariadb Add missing expose field to docker compose files (#124) 3 years ago
nginx-aspnet-mysql Add nginx-aspnet-mysql implementation (#119) 3 years ago
nginx-flask-mongo Added `--no-cache-dir` option to all Python pip commands in Dockerfiles (#113) 3 years ago
nginx-flask-mysql Add missing expose field to docker compose files (#124) 3 years ago
nginx-golang nginx-golang fix some minor typos (#49) 4 years ago
nginx-golang-mysql Update nginx-golang-mysql dockercompose (#141) 3 years ago
nginx-golang-postgres Add missing expose field to docker compose files (#124) 3 years ago
nginx-wsgi-flask init (#120) 3 years ago
prometheus-grafana prometheus-grafana - switch restart to string (#56) 4 years ago
react-express-mongodb Add missing expose field to docker compose files (#124) 3 years ago
react-express-mysql Update dependencies for django and express samples (#128) 3 years ago
react-java-mysql Add missing expose field to docker compose files (#124) 3 years ago
react-rust-postgres react-rust-postgres: add readmes 4 years ago
sparkjava Fix backend bootstrap error 4 years ago
sparkjava-mysql Add missing expose field to docker compose files (#124) 3 years ago
spring-postgres Add missing expose field to docker compose files (#124) 3 years ago
traefik-golang Adding simple Traefik example. (#44) 4 years ago
vuejs Fix security issues (#102) 3 years ago
wordpress-mysql Add missing expose field to docker compose files (#124) 3 years ago
.gitattributes repo init 4 years ago
CONTRIBUTING.md the 4 years ago
LICENSE Update License to CC0 4 years ago
MAINTAINERS Compliance to awesome repository requirements 4 years ago
README.md Migrate aspnet-mssql sample to .NET 5 🚀 (#143) 3 years ago
awesome-compose.jpg repo init 4 years ago

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.