From 76fbe43a8e1cb13cfe4a24bb78ac510a13c85651 Mon Sep 17 00:00:00 2001 From: startxfr Date: Mon, 8 Dec 2014 23:49:15 +0100 Subject: adding example for using volumes --- Services/apache/README.md | 6 ++++++ 1 file changed, 6 insertions(+) (limited to 'Services/apache') diff --git a/Services/apache/README.md b/Services/apache/README.md index ae07abb..b42fdd0 100644 --- a/Services/apache/README.md +++ b/Services/apache/README.md @@ -4,6 +4,12 @@ This container run apache on fedora server. ## Running from docker registry docker run -d -p 80:80 --name="apache" startx/sv-apache + # when used with a volume container (run data container, then run service) + docker run -d -v /var/www/html -v /var/log/httpd --name apache-data startx/sv-apache echo "Data container for apache" + docker run -d -p 80:80 --volumes-from apache-data --name="apache" startx/sv-apache + # when used in a linked container + docker run -d --name="apache" startx/sv-apache + docker run -d -p 80:80 --name="apache2" --link apache:apache startx/sv-apache ## Build and run from local Dockerfile ### Building docker image -- cgit v1.2.3