From 12f699812c79c6bdbd36a4b77f1b49d097bb1f06 Mon Sep 17 00:00:00 2001
From: Vincent Massol <vincent@massol.net>
Date: Fri, 13 Jan 2017 14:45:46 +0100
Subject: [PATCH] [Misc] Fixed formatting + improved README

---
 README.md | 8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)

diff --git a/README.md b/README.md
index 98039ce..bf31f43 100644
--- a/README.md
+++ b/README.md
@@ -6,11 +6,11 @@ To use:
 
 Details:
 
-* A volume named `dockerxwiki_mysql-data` is created. You can inspect it with `docker volume inspect dockerxwiki_mysql-data` and find out the location on your host's file system.
+* A volume named `<prefix>_mysql-data` is created (you can list all volumes with `docker volume ls`). You can inspect it with `docker volume <perfix>_mysql-data` and find out the location on your host's file system.
 * To issue some mysql commands:
-** Find the container id with `docker ps` 
-** Execute bash in the mysql container: `docker exec -it <containerid> bash -l`
-** Once inside the mysql container execute the `mysql` command: `mysql --user=xwiki --password=xwiki`
+ * Find the container id with `docker ps` 
+ * Execute bash in the mysql container: `docker exec -it <containerid> bash -l`
+ * Once inside the mysql container execute the `mysql` command: `mysql --user=xwiki --password=xwiki`
 
 Future ideas:
 * Setup xinit
-- 
GitLab