Skip to content

Commit 4d21b3d

Browse files
authored
Fix https to http in localhost URL
1 parent 12698a8 commit 4d21b3d

File tree

1 file changed

+3
-4
lines changed

1 file changed

+3
-4
lines changed

content/manuals/docker-hub/quickstart.md

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -115,7 +115,7 @@ You can run images from Docker Hub using the CLI or Docker Desktop Dashboard.
115115
The container logs appear after the container starts.
116116

117117
5. Select the **8080:80** link to open the server, or visit
118-
[https://localhost:8080](https://localhost:8080) in your web browser.
118+
[http://localhost:8080](http://localhost:8080) in your web browser.
119119

120120
6. In the Docker Desktop Dashboard, select the **Stop** button to stop the
121121
container.
@@ -174,7 +174,7 @@ You can run images from Docker Hub using the CLI or Docker Desktop Dashboard.
174174
...
175175
```
176176

177-
3. Visit [https://localhost:8080](https://localhost:8080) to view the default
177+
3. Visit [http://localhost:8080](http://localhost:8080) to view the default
178178
Nginx page and verify that the container is running.
179179

180180
4. In the terminal, press <kdb>Ctrl+C</kbd> to stop the container.
@@ -241,7 +241,7 @@ customize your own images to suit specific needs.
241241
$ docker run -p 8080:80 --rm <YOUR-USERNAME>/nginx-custom
242242
```
243243

244-
4. Visit [https://localhost:8080](https://localhost:8080) to view the page. You
244+
4. Visit [http://localhost:8080](http://localhost:8080) to view the page. You
245245
should see `Hello world from Docker!`.
246246

247247
5. In the terminal, press CTRL+C to stop the container.
@@ -323,4 +323,3 @@ these options.
323323

324324
Add [repository information](./repos/manage/information.md) to help users find and use
325325
your image.
326-

0 commit comments

Comments
 (0)