|
|
il y a 5 ans | |
|---|---|---|
| angular | il y a 5 ans | |
| aspnet-mssql | il y a 5 ans | |
| gitea-postgres | il y a 5 ans | |
| nextcloud-postgres | il y a 5 ans | |
| nextcloud-redis-mariadb | il y a 5 ans | |
| nginx-flask-mongo | il y a 5 ans | |
| nginx-flask-mysql | il y a 5 ans | |
| nginx-golang | il y a 5 ans | |
| nginx-golang-mysql | il y a 5 ans | |
| nginx-golang-postgres | il y a 5 ans | |
| prometheus-grafana | il y a 5 ans | |
| react-express-mysql | il y a 5 ans | |
| react-java-mysql | il y a 5 ans | |
| sparkjava | il y a 5 ans | |
| sparkjava-mysql | il y a 5 ans | |
| spring-postgres | il y a 5 ans | |
| vuejs | il y a 5 ans | |
| wordpress-mysql | il y a 5 ans | |
| .gitattributes | il y a 6 ans | |
| LICENSE | il y a 6 ans | |
| README.md | il y a 5 ans | |
| awesome-compose.jpg | il y a 6 ans |
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.
These instructions will get you through the bootstrap phase of creating and deploying samples of containerized applications with Docker Compose.
samples directoryThe 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
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 databaseSingle service samples:
Basic setups for different plaforms (not production ready - useful for personal use)
Gitea / PostgreSQLNextcloud / PostgreSQLNextcloud / Redis/ MariaDBWordpress / MySQLPrometheus / GrafanaWe welcome examples that help people understand how to use Docker Compose for common applications.