From c22eb6f476c35c0c53034e0501b8e8fb1b5e9260 Mon Sep 17 00:00:00 2001 From: Kamil Manka <kamil.manka@seamless.se> Date: Mon, 28 Dec 2015 13:17:29 +0100 Subject: [PATCH] README Docker Hub fixes --- README.md | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/README.md b/README.md index de45da9..6ed7d61 100644 --- a/README.md +++ b/README.md @@ -1,7 +1,7 @@ -# ecommerce-prestashop-data +### ecommerce-prestashop-data Docker data container for prestashop -## How to run this +#### How to run this ```bash @@ -9,7 +9,7 @@ docker run -e PS_VERSION=1.6.1.3 ikamman/ecommerce-prestashop-data ``` -### Mounting /var/www/html to the local machine +##### Mounting /var/www/html to the local machine ```bash @@ -17,7 +17,7 @@ docker run docker run -e PS_VERSION=1.6.1.3 -v /home/user/html:/var/www/html ika ``` -### Mounting only plugin directory to the local machine +##### Mounting only plugin directory to the local machine ```bash @@ -27,6 +27,6 @@ docker run docker run -e PS_VERSION=1.6.1.3 -e PLUGIN_NAME=new_plugin -v /home/u Please make sure that your **PLUGIN_NAME** match the destination directory name of the volume mounting -## Directory permissions +#### Directory permissions -The www-data is an owner/group of the /var/www/html container directory. If you're mounting this directory to the local file system make sure your www-data user/group exists in your system. The alternative is to grant access to ALL users on your local directory. This will allow the container process to write to it. +The **www-data** is an owner/group of the /var/www/html container directory. If you're mounting this directory to the local file system make sure your **www-data** user/group exists in your system. The alternative is to grant access to ALL users on your local directory. This will allow the container process to write to it. -- GitLab