From 040327f7a448707400b3ef2d85f05e4c9c0efbf6 Mon Sep 17 00:00:00 2001 From: Obed N Munoz Date: Thu, 9 Feb 2017 10:25:56 -0600 Subject: [PATCH] keystone,mariadb: Use stable tags Signed-off-by: Obed N Munoz --- keystone/README.md | 4 ++-- mariadb/README.md | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/keystone/README.md b/keystone/README.md index faf961d..08388ab 100644 --- a/keystone/README.md +++ b/keystone/README.md @@ -14,7 +14,7 @@ docker build -t clearlinux/keystone . Or just pull it from Dockerhub --------------------------- ``` -docker pull clearlinux/keystone +docker pull clearlinux/keystone:stable ``` Create Keystone SSL certificates @@ -36,7 +36,7 @@ docker run -d -it --name keystone -p 5000:5000 -p 35357:35357 \ -v $MYSQL_DATA_DIR:/var/lib/mysql \ -v `pwd`/keystone_cert.pem:/etc/nginx/ssl/keystone_cert.pem \ -v `pwd`/keystone_key.pem:/etc/nginx/ssl/keystone_key.pem \ - clearlinux/keystone + clearlinux/keystone:stable ``` Login into Keystone container diff --git a/mariadb/README.md b/mariadb/README.md index a92028f..70e97c2 100644 --- a/mariadb/README.md +++ b/mariadb/README.md @@ -14,14 +14,14 @@ docker build -t clearlinux/mariadb . Or just pull it from Dockerhub --------------------------- ``` -docker pull clearlinux/mariadb +docker pull clearlinux/mariadb:stable ``` Start MariaDB Container ----------------------- ``` YOUR_HOST=`hostname -f` -docker run --name mariadb -p 3306:3306 -e MYSQL_ROOT_PASSWORD=secret -d clearlinux/mariadb +docker run --name mariadb -p 3306:3306 -e MYSQL_ROOT_PASSWORD=secret -d clearlinux/mariadb:stable # Test it mysql -uroot -h $YOUR_HOST -psecret -e "show databases;" ```