From ef04e891bfafc3e6fa8b2c9e716f568e8a2cb5fb Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Fran=C3=A7ois=20Duroy?= Date: Thu, 11 Feb 2021 16:13:10 +0000 Subject: [PATCH 1/2] Update 04_sharing_app.md Changed the URL leading to Play With Docker so it's more straightforward. Had to search a bit before finding the right page. --- get-started/04_sharing_app.md | 12 +++++++----- 1 file changed, 7 insertions(+), 5 deletions(-) diff --git a/get-started/04_sharing_app.md b/get-started/04_sharing_app.md index 0ced3eb518..dc27ef6053 100644 --- a/get-started/04_sharing_app.md +++ b/get-started/04_sharing_app.md @@ -65,15 +65,17 @@ an example command that you will need to run to push to this repo. Now that our image has been built and pushed into a registry, let's try running our app on a brand new instance that has never seen this container image! To do this, we will use Play with Docker. -1. Open your browser to [Play with Docker](https://www.docker.com/play-with-docker){:target="_blank" rel="noopener" class="_"}. +1. Open your browser to [Play with Docker](https://labs.play-with-docker.com/){:target="_blank" rel="noopener" class="_"}. -2. Log in with your Docker Hub account. +2. Click on Log in and choose Docker. -3. Once you're logged in, click on the "+ ADD NEW INSTANCE" link in the left side bar. (If you don't see it, make your browser a little wider.) After a few seconds, a terminal window will be opened in your browser. +3. Connect with your Docker Hub account. + +4. Once you're logged in, click on the "+ ADD NEW INSTANCE" link in the left side bar. (If you don't see it, make your browser a little wider.) After a few seconds, a terminal window will be opened in your browser. ![Play with Docker add new instance](images/pwd-add-new-instance.png){: style=width:75% } -4. In the terminal, start your freshly pushed app. +5. In the terminal, start your freshly pushed app. ```bash docker run -dp 3000:3000 YOUR-USER-NAME/getting-started @@ -94,4 +96,4 @@ can use the latest version of the image. Now that we have that figured out, let's circle back around to what we noticed at the end of the last section. As a reminder, we noticed that when we restarted the app, we lost all of our todo list items. That's obviously not a great user experience, so let's learn how we can persist the data across -restarts! \ No newline at end of file +restarts! From a5129c7c50e12b0786c1cf051ae22b55d0aba5d0 Mon Sep 17 00:00:00 2001 From: Usha Mandya <47779042+usha-mandya@users.noreply.github.com> Date: Wed, 17 Feb 2021 15:18:02 +0000 Subject: [PATCH 2/2] Minor style update --- get-started/04_sharing_app.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/get-started/04_sharing_app.md b/get-started/04_sharing_app.md index dc27ef6053..07ed0c2708 100644 --- a/get-started/04_sharing_app.md +++ b/get-started/04_sharing_app.md @@ -67,11 +67,11 @@ new instance that has never seen this container image! To do this, we will use P 1. Open your browser to [Play with Docker](https://labs.play-with-docker.com/){:target="_blank" rel="noopener" class="_"}. -2. Click on Log in and choose Docker. +2. Click **Login** and then select **docker** from the drop-down list. 3. Connect with your Docker Hub account. -4. Once you're logged in, click on the "+ ADD NEW INSTANCE" link in the left side bar. (If you don't see it, make your browser a little wider.) After a few seconds, a terminal window will be opened in your browser. +4. Once you're logged in, click on the **ADD NEW INSTANCE** option on the left side bar. If you don't see it, make your browser a little wider. After a few seconds, a terminal window opens in your browser. ![Play with Docker add new instance](images/pwd-add-new-instance.png){: style=width:75% }