From e7ff8d47484e8830af5376e63e744d81b4690cfb Mon Sep 17 00:00:00 2001
From: Vincent Massol <vincent@massol.net>
Date: Fri, 10 Feb 2017 13:59:43 +0100
Subject: [PATCH] [Misc] Fix README

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

diff --git a/README.md b/README.md
index eeae23c..1322287 100644
--- a/README.md
+++ b/README.md
@@ -44,7 +44,7 @@ For reference here's a minimal Docker Compose file using MySQL that you could us
 version: '2'
 services:
   web:
-    image: "xwiki/xwiki-mysql-tomcat:latest"
+    image: "xwiki:mysql-tomcat"
     depends_on:
       - db
     ports:
@@ -55,7 +55,7 @@ services:
       - MYSQL_USER=xwiki
       - MYSQL_PASSWORD=xwiki
   db:
-    image: "mysql:5"
+    image: "mysql:5.7"
     volumes:
       - ./mysql/xwiki.cnf:/etc/mysql/conf.d/xwiki.cnf
       - mysql-data:/var/lib/mysql
-- 
GitLab