From 4fe15ad5cf17ccda6aab14c0b19938b873a4ae5b Mon Sep 17 00:00:00 2001 From: Mahmoud Zalt Date: Tue, 1 Nov 2016 10:07:21 -0400 Subject: [PATCH] update docs --- README.md | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index 4d0b3ec7..0df8bc98 100644 --- a/README.md +++ b/README.md @@ -267,7 +267,7 @@ git clone https://github.com/LaraDock/laradock.git 2 - Edit the `docker-compose.yml` file to map to your projects directories: ``` - volumes_source: + applications: image: tianon/true volumes: - ../project1/:/var/www/project1 @@ -421,8 +421,6 @@ docker-compose stop {container-name} docker-compose down ``` -*Note: Careful with this command as it will delete your Data Volume Container as well. (if you want to keep your Database data than you should stop each container by itself as follow):* - @@ -798,7 +796,7 @@ Since the new Laravel application is in the `my-cool-app` folder, we need to rep ```yaml application: - build: ./application + image: tianon/true volumes: - ../my-cool-app/:/var/www ...