Awesome Docker Compose samples
Go to file
Nicolas De Loof 40ba972d9b
Also rename docker-compose.yml to compose.yaml
Signed-off-by: Nicolas De Loof <nicolas.deloof@gmail.com>
2022-05-10 11:48:03 +02:00
.github Remove temporarily the 'java' codeql analysis (#189) 2021-12-09 12:16:47 +01:00
angular Adopt Compose v2 2022-05-10 11:10:53 +02:00
apache-php Adopt Compose v2 2022-05-10 11:10:53 +02:00
aspnet-mssql Adopt Compose v2 2022-05-10 11:10:53 +02:00
django Also rename docker-compose.yml to compose.yaml 2022-05-10 11:48:03 +02:00
elasticsearch-logstash-kibana Also rename docker-compose.yml to compose.yaml 2022-05-10 11:48:03 +02:00
fastapi Also rename docker-compose.yml to compose.yaml 2022-05-10 11:48:03 +02:00
flask Adopt Compose v2 2022-05-10 11:10:53 +02:00
flask-redis Also rename docker-compose.yml to compose.yaml 2022-05-10 11:48:03 +02:00
gitea-postgres Also rename docker-compose.yml to compose.yaml 2022-05-10 11:48:03 +02:00
minecraft Also rename docker-compose.yml to compose.yaml 2022-05-10 11:48:03 +02:00
nextcloud-postgres Also rename docker-compose.yml to compose.yaml 2022-05-10 11:48:03 +02:00
nextcloud-redis-mariadb Also rename docker-compose.yml to compose.yaml 2022-05-10 11:48:03 +02:00
nginx-aspnet-mysql Adopt Compose v2 2022-05-10 11:10:53 +02:00
nginx-flask-mongo Adopt Compose v2 2022-05-10 11:10:53 +02:00
nginx-flask-mysql Adopt Compose v2 2022-05-10 11:10:53 +02:00
nginx-golang Also rename docker-compose.yml to compose.yaml 2022-05-10 11:48:03 +02:00
nginx-golang-mysql Adopt Compose v2 2022-05-10 11:10:53 +02:00
nginx-golang-postgres Adopt Compose v2 2022-05-10 11:10:53 +02:00
nginx-nodejs-redis Also rename docker-compose.yml to compose.yaml 2022-05-10 11:48:03 +02:00
nginx-wsgi-flask Adopt Compose v2 2022-05-10 11:10:53 +02:00
pihole-cloudflared-DoH Adopt Compose v2 2022-05-10 11:10:53 +02:00
plex Adopt Compose v2 2022-05-10 11:10:53 +02:00
portainer Adopt Compose v2 2022-05-10 11:10:53 +02:00
postgresql-pgadmin Adopt Compose v2 2022-05-10 11:10:53 +02:00
prometheus-grafana Also rename docker-compose.yml to compose.yaml 2022-05-10 11:48:03 +02:00
react-express-mongodb Also rename docker-compose.yml to compose.yaml 2022-05-10 11:48:03 +02:00
react-express-mysql Also rename docker-compose.yml to compose.yaml 2022-05-10 11:48:03 +02:00
react-java-mysql Adopt Compose v2 2022-05-10 11:10:53 +02:00
react-nginx Also rename docker-compose.yml to compose.yaml 2022-05-10 11:48:03 +02:00
react-rust-postgres Adopt Compose v2 2022-05-10 11:10:53 +02:00
sparkjava Adopt Compose v2 2022-05-10 11:10:53 +02:00
sparkjava-mysql Adopt Compose v2 2022-05-10 11:10:53 +02:00
spring-postgres Adopt Compose v2 2022-05-10 11:10:53 +02:00
traefik-golang Also rename docker-compose.yml to compose.yaml 2022-05-10 11:48:03 +02:00
vuejs Adopt Compose v2 2022-05-10 11:10:53 +02:00
wireguard Adopt Compose v2 2022-05-10 11:10:53 +02:00
wordpress-mysql Adopt Compose v2 2022-05-10 11:10:53 +02: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 Adopt Compose v2 2022-05-10 11:10:53 +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 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.