From 495d744f054457940cf09255dbd770c448a8b874 Mon Sep 17 00:00:00 2001 From: vishalseshagiri Date: Mon, 24 Jul 2017 17:52:30 +0530 Subject: [PATCH] Update README.md Former-commit-id: c20aa551aba5a895db7f1a4aac8355ec7cc1eaa1 --- README.md | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index c7efcba6..ef7186da 100644 --- a/README.md +++ b/README.md @@ -12,6 +12,7 @@ These instructions will get you a copy of the project up and running on your loc What things you need to install the software and how to install them [Docker](https://www.docker.com/) + [Docker Compose](https://docs.docker.com/compose/overview/) ### Container Configuration @@ -53,11 +54,11 @@ depends_on: - mariadb - redis ``` - Express dependency between services, which has two effects: +Express dependency between services, which has two effects: - 1. docker-compose up will start services in dependency order. In the following example, db and redis will be started before web. +1. docker-compose up will start services in dependency order. In the following example, db and redis will be started before web. - 2. docker-compose up SERVICE will automatically include SERVICE’s dependencies. In the following example, docker-compose up web will also create and start db and redis. +2. docker-compose up SERVICE will automatically include SERVICE’s dependencies. In the following example, docker-compose up web will also create and start db and redis. ### Installing