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;" ```