From 4d21b3d74cfad8e95b01f476f1c526671143ae00 Mon Sep 17 00:00:00 2001 From: Bokyeom <79684339+k-kbk@users.noreply.github.com> Date: Sun, 13 Apr 2025 19:39:36 +0900 Subject: [PATCH] Fix https to http in localhost URL --- content/manuals/docker-hub/quickstart.md | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/content/manuals/docker-hub/quickstart.md b/content/manuals/docker-hub/quickstart.md index 6d1f1d29fd0..c3b646d0ead 100644 --- a/content/manuals/docker-hub/quickstart.md +++ b/content/manuals/docker-hub/quickstart.md @@ -115,7 +115,7 @@ You can run images from Docker Hub using the CLI or Docker Desktop Dashboard. The container logs appear after the container starts. 5. Select the **8080:80** link to open the server, or visit - [https://localhost:8080](https://localhost:8080) in your web browser. + [http://localhost:8080](http://localhost:8080) in your web browser. 6. In the Docker Desktop Dashboard, select the **Stop** button to stop the container. @@ -174,7 +174,7 @@ You can run images from Docker Hub using the CLI or Docker Desktop Dashboard. ... ``` -3. Visit [https://localhost:8080](https://localhost:8080) to view the default +3. Visit [http://localhost:8080](http://localhost:8080) to view the default Nginx page and verify that the container is running. 4. In the terminal, press Ctrl+C to stop the container. @@ -241,7 +241,7 @@ customize your own images to suit specific needs. $ docker run -p 8080:80 --rm /nginx-custom ``` -4. Visit [https://localhost:8080](https://localhost:8080) to view the page. You +4. Visit [http://localhost:8080](http://localhost:8080) to view the page. You should see `Hello world from Docker!`. 5. In the terminal, press CTRL+C to stop the container. @@ -323,4 +323,3 @@ these options. Add [repository information](./repos/manage/information.md) to help users find and use your image. -