diff options
author | startxfr <clarue@startx.fr> | 2014-12-08 23:49:15 +0100 |
---|---|---|
committer | startxfr <clarue@startx.fr> | 2014-12-08 23:49:15 +0100 |
commit | 76fbe43a8e1cb13cfe4a24bb78ac510a13c85651 (patch) | |
tree | 14c8aac5aa405791025ae12ae9553ebe299bef8e /Services/php | |
parent | ef2c1df934ee7720fd1ccacae042f3deb3b7628d (diff) | |
download | phpmyadmin-76fbe43a8e1cb13cfe4a24bb78ac510a13c85651.tar.gz phpmyadmin-76fbe43a8e1cb13cfe4a24bb78ac510a13c85651.tar.bz2 phpmyadmin-76fbe43a8e1cb13cfe4a24bb78ac510a13c85651.tar.xz phpmyadmin-76fbe43a8e1cb13cfe4a24bb78ac510a13c85651.zip |
adding example for using volumes
Diffstat (limited to 'Services/php')
-rw-r--r-- | Services/php/README.md | 6 |
1 files changed, 6 insertions, 0 deletions
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 |