Awesome Docker Compose samples
Go to file
carehart 95129959d2 the
Signed-off-by: carehart <charlie@carehart.org>
2020-07-27 22:14:01 -05:00
.github Compliance to awesome repository requirements 2020-03-27 11:38:54 +01:00
angular Fix default port mapping and indentation 2020-03-24 00:44:49 +01:00
apache-php Sample for apache-php7 (#42) 2020-04-06 18:31:23 +02:00
aspnet-mssql the 2020-07-27 22:14:01 -05:00
django Upgrade Django version to fix CVE-2020-13596 & CVE-2020-13254 2020-06-05 21:34:30 +02:00
elasticsearch-logstash-kibana Add Logstash config to filter example Nginx logs 2020-07-24 02:32:09 +02:00
flask fixed title in flask readme file (#51) 2020-04-08 16:39:04 +02:00
gitea-postgres Fix typo in gitea-postgres README 2020-03-29 12:11:56 +02:00
nextcloud-postgres add nextcloud-postgres sample 2020-03-18 17:45:54 +01:00
nextcloud-redis-mariadb Add nextcloud-redis-mariadb sample 2020-03-19 11:31:12 +01:00
nginx-flask-mongo Fix default port mapping and indentation 2020-03-24 00:44:49 +01:00
nginx-flask-mysql Fix default port mapping and indentation 2020-03-24 00:44:49 +01:00
nginx-golang nginx-golang fix some minor typos (#49) 2020-04-12 21:42:42 +02:00
nginx-golang-mysql nginx-golang fix some minor typos (#49) 2020-04-12 21:42:42 +02:00
nginx-golang-postgres Fix default port mapping and indentation 2020-03-24 00:44:49 +01:00
prometheus-grafana prometheus-grafana - switch restart to string (#56) 2020-04-14 12:21:52 +02:00
react-express-mongodb react-express-mongodb: clean frontend code 2020-05-13 11:33:48 +02:00
react-express-mysql Bump lodash from 4.17.15 to 4.17.19 in /react-express-mysql/backend 2020-07-20 00:00:11 +00:00
react-java-mysql Udpdate some README.md files and change the version of node image for vuejs sample 2020-03-24 17:00:48 +01:00
react-rust-postgres react-rust-postgres: add readmes 2020-03-27 10:14:29 +01:00
sparkjava Fix default port mapping and indentation 2020-03-24 00:44:49 +01:00
sparkjava-mysql Bump mysql-connector-java in /sparkjava-mysql/backend 2020-07-02 02:47:53 +00:00
spring-postgres Change port number in spring-postgresql sample (#41) 2020-04-08 09:28:28 +02:00
traefik-golang Adding simple Traefik example. (#44) 2020-04-07 21:32:26 +02:00
vuejs Bump lodash from 4.17.15 to 4.17.19 in /vuejs/vuejs 2020-07-20 00:13:54 +00:00
wordpress-mysql Add wordpress-mysql sample 2020-03-18 21:33:08 +01: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 Merge pull request #71 from thyrlian/master 2020-07-24 11:34:58 +02: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.

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.