Skip to content

Latest commit

 

History

History
61 lines (38 loc) · 894 Bytes

README.md

File metadata and controls

61 lines (38 loc) · 894 Bytes

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
mkdir ~/docker
  1. Clone this repo
git clone https://github.com/temarusanov/docker-services.git .
  1. Create .env from .env.example and configure it

  2. Run containers

docker-compose up -d

Or launch specific containers

docker-compose up -d adminer postgres

Default ports

  • Adminer: 8080
  • PostgreSQL: 5432
  • RabbiMQ: 5672 & 15672
  • Redis: 6379
  • MongoDB: 27017-27019
  • MongoExpress: 8081