From 164f1f4ad47c61e996f9bcec41d927a78f9b218b Mon Sep 17 00:00:00 2001 From: Michael Berlin Date: Tue, 24 May 2016 18:47:10 -0700 Subject: [PATCH] docker: Update list of flavors in bootstrap build instructions. --- docker/bootstrap/README.md | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/docker/bootstrap/README.md b/docker/bootstrap/README.md index 9301928aa3..f8a450360c 100644 --- a/docker/bootstrap/README.md +++ b/docker/bootstrap/README.md @@ -8,6 +8,7 @@ The `vitess/bootstrap` image comes in different flavors: * `vitess/bootstrap:common` - dependencies that are common to all flavors * `vitess/bootstrap:mariadb` - bootstrap image for MariaDB * `vitess/bootstrap:mysql56` - bootstrap image for MySQL 5.6 +* `vitess/bootstrap:mysql57` - bootstrap image for MySQL 5.7 * `vitess/bootstrap:percona` - bootstrap image for Percona Server **NOTE: Unlike the base image that builds Vitess itself, this bootstrap image @@ -39,6 +40,8 @@ Makefile target to build every flavor: ``` sh vitess$ ./test.go -pull=false -flavor=mariadb vitess$ ./test.go -pull=false -flavor=mysql56 + vitess$ ./test.go -pull=false -flavor=mysql57 + vitess$ ./test.go -pull=false -flavor=percona ... ``` @@ -48,6 +51,8 @@ Makefile target to build every flavor: $ docker push vitess/bootstrap:common $ docker push vitess/bootstrap:mariadb $ docker push vitess/bootstrap:mysql56 + $ docker push vitess/bootstrap:mysql57 + $ docker push vitess/bootstrap:percona ... ```