aa068a05cd
Signed-off-by: Christopher Crone <christopher.crone@docker.com> |
||
---|---|---|
samples | ||
.gitattributes | ||
awesome-compose.jpg | ||
LICENSE | ||
README.md |
Awesome Compose
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.
Getting started
These instructions will get you through the bootstrap phase of creating and deploying samples of containerized applications with docker-compose.
Prerequisites
- Make sure that you have Docker and docker-compose installed
- Windows or macOS: Install Docker Desktop
- Linux: Install Docker and then docker-compose
- Download some or all of the samples in the
samples
directory
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 the all containers of the sample application run:
docker-compose down
Contents
Samples of Docker Compose applications with multiple integrated services:
ASP.NET / MS-SQL
-- sample ASP.NET core application with MS SQL server databaseGo / NGINX / MySQL
-- sample Go application with an Nginx proxy and a MySQL databaseGo / NGINX / PostgreSQL
-- sample Go application with an Nginx proxy and a PostgreSQL databaseJava Spark / MySQL
-- sample Java application and a MySQL databaseNGINX / Flask / MongoDB
-- sample Python/Flask application with Nginx proxy and a Mongo databaseNGINX / Flask / MySQL
-- sample Python/Flask application with an Nginx proxy and a MySQL databaseNGINX / Go
-- sample Nginx proxy with a Go backendReact / Spring / MySQL
-- sample React application with a Spring backend and a MySQL databaseReact / Express / MySQL
-- sample React application with a NodeJS backend and a MySQL databaseSpring / PostgreSQL
-- sample Java application with Spring framework and a Postgres database
Single service samples:
Contribute
We welcome examples that help people understand how to use docker-compose for common applications.