Awesome Docker Compose samples
Go to file
2021-11-28 23:56:37 +01:00
.github Create codeql-analysis.yml (#129) 2021-04-14 09:54:36 +02:00
angular Revert "Remove version from compose files to conform to the specification (#167)" 2021-11-28 23:56:37 +01:00
apache-php Revert "Remove version from compose files to conform to the specification (#167)" 2021-11-28 23:56:37 +01:00
aspnet-mssql Revert "Remove version from compose files to conform to the specification (#167)" 2021-11-28 23:56:37 +01:00
django Revert "Remove version from compose files to conform to the specification (#167)" 2021-11-28 23:56:37 +01:00
elasticsearch-logstash-kibana Revert "Remove version from compose files to conform to the specification (#167)" 2021-11-28 23:56:37 +01:00
fastapi Add fastapi to the list of compose projects 2021-10-10 23:38:34 +02:00
flask Revert "Remove version from compose files to conform to the specification (#167)" 2021-11-28 23:56:37 +01:00
gitea-postgres Revert "Remove version from compose files to conform to the specification (#167)" 2021-11-28 23:56:37 +01:00
minecraft Revert "Remove version from compose files to conform to the specification (#167)" 2021-11-28 23:56:37 +01:00
nextcloud-postgres Revert "Remove version from compose files to conform to the specification (#167)" 2021-11-28 23:56:37 +01:00
nextcloud-redis-mariadb Revert "Remove version from compose files to conform to the specification (#167)" 2021-11-28 23:56:37 +01:00
nginx-aspnet-mysql Revert "Remove version from compose files to conform to the specification (#167)" 2021-11-28 23:56:37 +01:00
nginx-flask-mongo Revert "Remove version from compose files to conform to the specification (#167)" 2021-11-28 23:56:37 +01:00
nginx-flask-mysql Revert "Remove version from compose files to conform to the specification (#167)" 2021-11-28 23:56:37 +01:00
nginx-golang Revert "Remove version from compose files to conform to the specification (#167)" 2021-11-28 23:56:37 +01:00
nginx-golang-mysql Revert "Remove version from compose files to conform to the specification (#167)" 2021-11-28 23:56:37 +01:00
nginx-golang-postgres Revert "Remove version from compose files to conform to the specification (#167)" 2021-11-28 23:56:37 +01:00
nginx-wsgi-flask Revert "Remove version from compose files to conform to the specification (#167)" 2021-11-28 23:56:37 +01:00
prometheus-grafana Revert "Remove version from compose files to conform to the specification (#167)" 2021-11-28 23:56:37 +01:00
react-express-mongodb Revert "Remove version from compose files to conform to the specification (#167)" 2021-11-28 23:56:37 +01:00
react-express-mysql Revert "Remove version from compose files to conform to the specification (#167)" 2021-11-28 23:56:37 +01:00
react-java-mysql Revert "Remove version from compose files to conform to the specification (#167)" 2021-11-28 23:56:37 +01:00
react-nginx add react-nginx (#121) 2021-10-10 17:19:58 +02:00
react-rust-postgres Revert "Remove version from compose files to conform to the specification (#167)" 2021-11-28 23:56:37 +01:00
sparkjava Revert "Remove version from compose files to conform to the specification (#167)" 2021-11-28 23:56:37 +01:00
sparkjava-mysql Revert "Remove version from compose files to conform to the specification (#167)" 2021-11-28 23:56:37 +01:00
spring-postgres Revert "Remove version from compose files to conform to the specification (#167)" 2021-11-28 23:56:37 +01:00
traefik-golang Revert "Remove version from compose files to conform to the specification (#167)" 2021-11-28 23:56:37 +01:00
vuejs Revert "Remove version from compose files to conform to the specification (#167)" 2021-11-28 23:56:37 +01:00
wordpress-mysql Revert "Remove version from compose files to conform to the specification (#167)" 2021-11-28 23:56:37 +01: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 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 add react-nginx (#121) 2021-10-10 17:19: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.

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.