From c713949f478a86c8c70bdec103b2920748699efe Mon Sep 17 00:00:00 2001 From: Courtney Myers Date: Tue, 24 Jul 2018 11:42:50 -0400 Subject: [PATCH] Update docker hub image tag to 'latest', as the automated Docker Hub build settings are configured to use the 'latest' tag --- README.md | 2 +- setup.sh | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 4bf039e..900cea0 100644 --- a/README.md +++ b/README.md @@ -5,7 +5,7 @@ 1. Build the Craft 3 image locally from the Dockerfile: `docker build -t courtneymyers/craft3 .` or download it from [Docker Hub](https://hub.docker.com/r/courtneymyers/craft3): - `docker pull courtneymyers/craft3:1.0` + `docker pull courtneymyers/craft3:latest` Optionally download the MariaDB image from [Docker Hub](https://hub.docker.com/_/mariadb) as well (not required, as it’ll get pulled in step 3, if you don't already have it locally): `docker pull mariadb:10.3` diff --git a/setup.sh b/setup.sh index 40a777f..f635678 100644 --- a/setup.sh +++ b/setup.sh @@ -20,7 +20,7 @@ docker run \ --link craft-db:db \ --publish 8000:80 \ --detach \ - courtneymyers/craft3:1.0; + courtneymyers/craft3:latest; sleep 15; @@ -38,7 +38,7 @@ docker run \ --link craft-db:db \ --publish 8000:80 \ --detach \ - courtneymyers/craft3:1.0; + courtneymyers/craft3:latest; sleep 15;