From 76fbe43a8e1cb13cfe4a24bb78ac510a13c85651 Mon Sep 17 00:00:00 2001
From: startxfr <clarue@startx.fr>
Date: Mon, 8 Dec 2014 23:49:15 +0100
Subject: adding example for using volumes

---
 Services/php/README.md | 6 ++++++
 1 file changed, 6 insertions(+)

(limited to 'Services/php')

diff --git a/Services/php/README.md b/Services/php/README.md
index 5a407a4..7f1161f 100644
--- a/Services/php/README.md
+++ b/Services/php/README.md
@@ -4,6 +4,12 @@ This container run php via apache on fedora server.
 ## Running from docker registry
 
 	docker run -d -p 80:80 --name="php" startx/sv-php
+        # when used with a volume container (run data container, then run service)
+	docker run -d -v /var/www/html -v /var/log/httpd --name php-data startx/sv-php  echo "Data container for php webserver"
+	docker run -d -p 80:80 --volumes-from php-data --name="php" startx/sv-php
+	when linked to another container
+	docker run -d --name="mongo" startx/sv-mongo
+	docker run -d -p 80:80 --name="php" --link mongo:mongo startx/sv-php
 
 ## Build and run from local Dockerfile
 ### Building docker image
-- 
cgit v1.2.3