https://github.com/odanieldcs/docker-guide
Examples of docker-compose
https://github.com/odanieldcs/docker-guide
cloud docker docker-compose kafka mongodb mysql postgresql rabbitmq stack
Last synced: 12 months ago
JSON representation
Examples of docker-compose
- Host: GitHub
- URL: https://github.com/odanieldcs/docker-guide
- Owner: odanieldcs
- Created: 2019-12-23T13:31:53.000Z (over 6 years ago)
- Default Branch: master
- Last Pushed: 2020-04-18T15:27:01.000Z (almost 6 years ago)
- Last Synced: 2025-02-01T20:11:42.098Z (about 1 year ago)
- Topics: cloud, docker, docker-compose, kafka, mongodb, mysql, postgresql, rabbitmq, stack
- Language: Shell
- Homepage:
- Size: 12.7 KB
- Stars: 2
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Docker Compose Sample
A collection of docker-compose sample to how install the applications into environment development.
## Get Started
Applications docker compose:
- [MySQL 8](https://github.com/danielcsrs/docker-guide/tree/master/mysql8/single)
- [MongoDB 4.2](https://github.com/danielcsrs/docker-guide/tree/master/mongodb4/single)
- [Postgres 12](https://github.com/danielcsrs/docker-guide/tree/master/postgres12/single)
- [Kafka](https://github.com/danielcsrs/docker-guide/tree/master/kafka/single)
- [RabbitMQ](https://github.com/danielcsrs/docker-guide/tree/master/rabbitmq/single)
- [RabbitMQ Cluster](https://github.com/danielcsrs/docker-guide/tree/master/rabbitmq/cluster)
```shell
git clone https://github.com/danielcsrs/docker-guide
cd docker-guide
```
## How to use:
Run **docker-compose up** or **docker-compose up -d** (on background) into directory of application.
Example with MySQL 8:
```shell
cd mysql8/single && docker-compose up -d
```