https://github.com/temarusanov/docker-services
Docker services allow you to start services using one command.
https://github.com/temarusanov/docker-services
adminer docker mongodb postgresql rabbitmq redis
Last synced: 11 months ago
JSON representation
Docker services allow you to start services using one command.
- Host: GitHub
- URL: https://github.com/temarusanov/docker-services
- Owner: temarusanov
- Created: 2021-10-06T14:37:37.000Z (over 4 years ago)
- Default Branch: master
- Last Pushed: 2021-12-17T07:54:47.000Z (about 4 years ago)
- Last Synced: 2025-03-26T12:11:21.508Z (11 months ago)
- Topics: adminer, docker, mongodb, postgresql, rabbitmq, redis
- Language: Shell
- Homepage:
- Size: 37.1 KB
- Stars: 5
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Docker services
Docker services allow you to start services using one command. The main point of this project is to create one folder where all the services launched on the servers will be stored.
## Features
- All services in one file
- Configuration for all services
- Volume store in this repository
## Services
- PostgreSQL
- Adminer
- RabbitMQ
- Redis
- MongoDB
- MongoExpress
## Installation
1. Create folder
```bash
mkdir ~/docker
```
2. Clone this repo
```bash
git clone https://github.com/temarusanov/docker-services.git .
```
3. Create `.env` from `.env.example` and configure it
4. Run containers
```bash
docker-compose up -d
```
Or launch specific containers
```bash
docker-compose up -d adminer postgres
```
## Default ports
- Adminer: 8080
- PostgreSQL: 5432
- RabbiMQ: 5672 & 15672
- Redis: 6379
- MongoDB: 27017-27019
- MongoExpress: 8081