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.
 
 
 
 
 
 
Guillaume Lours 05095bbe0d
Merge pull request #214 from SAB-6/master
2 years ago
.github Remove temporarily the 'java' codeql analysis (#189) 3 years ago
angular fix security issues on angular sample 2 years ago
apache-php Remove version from compose files to conform to the specification (#167) 3 years ago
aspnet-mssql Arm64 and check Compose v2 support (#177) 3 years ago
django fix security issues on django sample 2 years ago
elasticsearch-logstash-kibana update versions of eleastic, logstash and kibana with fix of log Log4J v2 CVE-2021-44228 (#195) 3 years ago
fastapi Add fastapi to the list of compose projects 3 years ago
flask Remove version from compose files to conform to the specification (#167) 3 years ago
gitea-postgres Remove version from compose files to conform to the specification (#167) 3 years ago
minecraft Remove version from compose files to conform to the specification (#167) 3 years ago
nextcloud-postgres Remove version from compose files to conform to the specification (#167) 3 years ago
nextcloud-redis-mariadb Remove version from compose files to conform to the specification (#167) 3 years ago
nginx-aspnet-mysql Arm64 and check Compose v2 support (#177) 3 years ago
nginx-flask-mongo Remove version from compose files to conform to the specification (#167) 3 years ago
nginx-flask-mysql fixed ImportError 2 years ago
nginx-golang Remove version from compose files to conform to the specification (#167) 3 years ago
nginx-golang-mysql Arm64 and check Compose v2 support (#177) 3 years ago
nginx-golang-postgres Remove version from compose files to conform to the specification (#167) 3 years ago
nginx-wsgi-flask Remove version from compose files to conform to the specification (#167) 3 years ago
pihole-cloudflared-DoH Added Pi-hole / cloudflared example for use of DoH 3 years ago
plex Use docker hub images and readmes updates (#190) 3 years ago
portainer Use docker hub images and readmes updates (#190) 3 years ago
postgresql-pgadmin Use docker hub images and readmes updates (#190) 3 years ago
prometheus-grafana Remove version from compose files to conform to the specification (#167) 3 years ago
react-express-mongodb fix security issues on react-express-mongodb sample 2 years ago
react-express-mysql fix security issues on react-express-mysql sample 2 years ago
react-java-mysql fix security issues on react-java-mysql sample 2 years ago
react-nginx fix security issues on react-nginx sample 2 years ago
react-rust-postgres fix security issues on react-rust-postgres sample 2 years ago
sparkjava Remove version from compose files to conform to the specification (#167) 3 years ago
sparkjava-mysql Arm64 and check Compose v2 support (#177) 3 years ago
spring-postgres Remove version from compose files to conform to the specification (#167) 3 years ago
traefik-golang Remove version from compose files to conform to the specification (#167) 3 years ago
vuejs fix security issues on vuejs sample 2 years ago
wireguard fix typo (#197) 3 years ago
wordpress-mysql Arm64 and check Compose v2 support (#177) 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 Use docker hub images and readmes updates (#190) 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.