Skip to content

Commit b1256d5

Browse files
authored
ENGDOCS-2265 (#21203)
* ENGDOCS-2265 * Apply suggestions from code review
1 parent 51bfc1e commit b1256d5

34 files changed

+130
-134
lines changed

content/contribute/components/call-outs.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ is displayed in the callout.
4646
> `docker compose down`. If you want to remove the volumes, you will need to add
4747
> the `--volumes` flag.
4848
>
49-
> The Docker Dashboard does not remove volumes when you delete the app stack.
49+
> The Docker Desktop Dashboard does not remove volumes when you delete the app stack.
5050
5151
> [!CAUTION]
5252
>
@@ -96,7 +96,7 @@ Docker Scout is an [early access](/release-lifecycle/#early-access-ea) product.
9696
> `docker compose down`. If you want to remove the volumes, you will need to add
9797
> the `--volumes` flag.
9898
>
99-
> The Docker Dashboard does _not_ remove volumes when you delete the app stack.
99+
> The Docker Desktop Dashboard does not remove volumes when you delete the app stack.
100100

101101
> [!CAUTION]
102102
>

content/get-started/docker-concepts/running-containers/multi-container-applications.md

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -157,9 +157,9 @@ In this hands-on guide, you'll first see how to build and run a counter web appl
157157
008e0ecf4f36 redis "docker-entrypoint.s…" About a minute ago Up About a minute 6379/tcp redis
158158
```
159159

160-
7. If you look at the Docker Dashboard, you can see the containers and dive deeper into their configuration.
160+
7. If you look at the Docker Desktop Dashboard, you can see the containers and dive deeper into their configuration.
161161

162-
![A screenshot of Docker Dashboard showing multi-container applications](images/multi-container-apps.webp?w=5000&border=true)
162+
![A screenshot of the Docker Desktop Dashboard showing multi-container applications](images/multi-container-apps.webp?w=5000&border=true)
163163

164164
8. With everything up and running, you can open [http://localhost](http://localhost) in your browser to see the site. Refresh the page several times to see the host that’s handling the request and the total number of requests:
165165

@@ -174,9 +174,9 @@ In this hands-on guide, you'll first see how to build and run a counter web appl
174174
>
175175
> You might have noticed that Nginx, acting as a reverse proxy, likely distributes incoming requests in a round-robin fashion between the two backend containers. This means each request might be directed to a different container (web1 and web2) on a rotating basis. The output shows consecutive increments for both the web1 and web2 containers and the actual counter value stored in Redis is updated only after the response is sent back to the client.
176176

177-
9. You can use the Docker Dashboard to remove the containers by selecting the containers and selecting the **Delete** button.
177+
9. You can use the Docker Desktop Dashboard to remove the containers by selecting the containers and selecting the **Delete** button.
178178

179-
![A screenshot of Docker Dashboard showing how to delete the multi-container applications](images/delete-multi-container-apps.webp?border=true)
179+
![A screenshot of Docker Desktop Dashboard showing how to delete the multi-container applications](images/delete-multi-container-apps.webp?border=true)
180180
181181
## Simplify the deployment using Docker Compose
182182

@@ -204,14 +204,14 @@ Navigate to the root of the project directory. Inside this directory, you'll fin
204204
✔ Container nginx-nodejs-redis-nginx-1 Started
205205
```
206206

207-
2. If you look at the Docker Dashboard, you can see the containers and dive deeper into their configuration.
207+
2. If you look at the Docker Desktop Dashboard, you can see the containers and dive deeper into their configuration.
208208

209209

210-
![A screenshot of Docker Dashboard showing the containers of the application stack deployed using Docker Compose](images/list-containers.webp?border=true)
210+
![A screenshot of the Docker Desktop Dashboard showing the containers of the application stack deployed using Docker Compose](images/list-containers.webp?border=true)
211211

212-
3. Alternatively, you can use the Docker Dashboard to remove the containers by selecting the application stack and selecting the **Delete** button.
212+
3. Alternatively, you can use the Docker Desktop Dashboard to remove the containers by selecting the application stack and selecting the **Delete** button.
213213

214-
![A screenshot of Docker Dashboard that shows how to remove the containers that you deployed using Docker Compose](images/delete-containers.webp?border=true)
214+
![A screenshot of Docker Desktop Dashboard that shows how to remove the containers that you deployed using Docker Compose](images/delete-containers.webp?border=true)
215215

216216

217217
In this guide, you learned how easy it is to use Docker Compose to start and stop a multi-container application compared to `docker run` which is error-prone and difficult to manage.

content/get-started/docker-concepts/running-containers/overriding-container-defaults.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -89,9 +89,9 @@ In this hands-on guide, you'll see how to use the `docker run` command to overri
8989

9090
This will start another Postgres container in the background, listening on the standard postgres port `5432` in the container, but mapped to port `5433` on the host machine. You override the host port just to ensure that this new container doesn't conflict with the existing running container.
9191

92-
3. Verify that both containers are running by going to the **Containers** view in the Docker Dashboard.
92+
3. Verify that both containers are running by going to the **Containers** view in the Docker Desktop Dashboard.
9393

94-
![A screenshot of Docker Dashboard showing the running instances of Postgres containers](images/running-postgres-containers.webp?border=true)
94+
![A screenshot of the Docker Desktop Dashboard showing the running instances of Postgres containers](images/running-postgres-containers.webp?border=true)
9595

9696
### Run Postgres container in a controlled network
9797

@@ -170,15 +170,15 @@ Sometimes, you might need to override the default commands (`CMD`) or entry poin
170170

171171
This command starts the Postgres service defined in the Docker Compose file.
172172

173-
3. Verify the authentication with Docker Dashboard.
173+
3. Verify the authentication with Docker Desktop Dashboard.
174174

175-
Open the Docker Dashboard, select the **Postgres** container and select **Exec** to enter into the container shell. You can type the following command to connect to the Postgres database:
175+
Open the Docker Desktop Dashboard, select the **Postgres** container and select **Exec** to enter into the container shell. You can type the following command to connect to the Postgres database:
176176

177177
```console
178178
# psql -U postgres
179179
```
180180

181-
![A screenshot of the Docker Dashboard selecting the Postgres container and entering into its shell using EXEC button](images/exec-into-postgres-container.webp?border=true)
181+
![A screenshot of the Docker Desktop Dashboard selecting the Postgres container and entering into its shell using EXEC button](images/exec-into-postgres-container.webp?border=true)
182182

183183

184184
> [!NOTE]

content/get-started/docker-concepts/running-containers/persisting-container-data.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -128,9 +128,9 @@ In this guide, you’ll practice creating and using volumes to persist data crea
128128

129129
### View volume contents
130130

131-
The Docker Dashboard provides the ability to view the contents of any volume, as well as the ability to export, import, and clone volumes.
131+
The Docker Desktop Dashboard provides the ability to view the contents of any volume, as well as the ability to export, import, and clone volumes.
132132

133-
1. Open the Docker Dashboard and navigate to the **Volumes** view. In this view, you should see the **postgres_data** volume.
133+
1. Open the Docker Desktop Dashboard and navigate to the **Volumes** view. In this view, you should see the **postgres_data** volume.
134134

135135
2. Select the **postgres_data** volume’s name.
136136

@@ -149,7 +149,7 @@ $ docker rm -f new-db
149149

150150
There are a few methods to remove volumes, including the following:
151151

152-
- Select the **Delete Volume** option on a volume in the Docker Dashboard.
152+
- Select the **Delete Volume** option on a volume in the Docker Desktop Dashboard.
153153
- Use the `docker volume rm` command:
154154

155155
```console

content/get-started/docker-concepts/running-containers/publishing-ports.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -88,9 +88,9 @@ In this step, you will run a container and publish its port using the Docker CLI
8888

8989
The first `8080` refers to the host port. This is the port on your local machine that will be used to access the application running inside the container. The second `80` refers to the container port. This is the port that the application inside the container listens on for incoming connections. Hence, the command binds to port `8080` of the host to port `80` on the container system.
9090

91-
3. Verify the published port by going to the **Containers** view of the Docker Dashboard.
91+
3. Verify the published port by going to the **Containers** view of the Docker Desktop Dashboard.
9292

93-
![A screenshot of Docker dashboard showing the published port](images/published-ports.webp?w=5000&border=true)
93+
![A screenshot of Docker Desktop Dashboard showing the published port](images/published-ports.webp?w=5000&border=true)
9494

9595
4. Open the website by either selecting the link in the **Port(s)** column of your container or visiting [http://localhost:8080](http://localhost:8080) in your browser.
9696

content/get-started/docker-concepts/running-containers/sharing-local-files.md

Lines changed: 9 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -90,9 +90,9 @@ In this hands-on guide, you’ll practice how to create and use a bind mount to
9090

9191
Using a bind mount, you can map the configuration file on your host computer to a specific location within the container. In this example, you’ll see how to change the look and feel of the webpage by using bind mount:
9292

93-
1. Delete the existing container by using the Docker Dashboard:
93+
1. Delete the existing container by using the Docker Desktop Dashboard:
9494

95-
![A screenshot of Docker dashboard showing how to delete the httpd container](images/delete-httpd-container.webp?border=true)
95+
![A screenshot of Docker Desktop Dashboard showing how to delete the httpd container](images/delete-httpd-container.webp?border=true)
9696

9797

9898
2. Create a new directory called `public_html` on your host system.
@@ -157,44 +157,40 @@ Using a bind mount, you can map the configuration file on your host computer to
157157
With everything now up and running, you should be able to access the site via [http://localhost:8080](http://localhost:8080) and find a new webpage that welcomes you with a friendly whale.
158158

159159

160-
### Access the file on the Docker Dashboard
160+
### Access the file on the Docker Desktop Dashboard
161161

162162
1. You can view the mounted files inside a container by selecting the container's **Files** tab and then selecting a file inside the `/usr/local/apache2/htdocs/` directory. Then, select **Open file editor**.
163163

164164

165-
![A screenshot of Docker dashboard showing the mounted files inside the a container](images/mounted-files.webp?border=true)
165+
![A screenshot of Docker Desktop Dashboard showing the mounted files inside the a container](images/mounted-files.webp?border=true)
166166

167-
2. Delete the file on the host and verify the file is also deleted in the container. You will find that the files no longer exist under **Files** in the Docker Dashboard.
167+
2. Delete the file on the host and verify the file is also deleted in the container. You will find that the files no longer exist under **Files** in the Docker Desktop Dashboard.
168168

169169

170-
![A screenshot of Docker dashboard showing the deleted files inside the a container](images/deleted-files.webp?border=true)
170+
![A screenshot of Docker Desktop Dashboard showing the deleted files inside the a container](images/deleted-files.webp?border=true)
171171

172172

173-
3. Recreate the HTML file on the host system and see that file re-appears under the **Files** tab under **Containers** on the Docker Dashboard. By now, you will be able to access the site too.
173+
3. Recreate the HTML file on the host system and see that file re-appears under the **Files** tab under **Containers** on the Docker Desktop Dashboard. By now, you will be able to access the site too.
174174

175175

176176

177177
### Stop your container
178178

179179
The container continues to run until you stop it.
180180

181-
1. Go to the **Containers** view in the Docker Dashboard.
181+
1. Go to the **Containers** view in the Docker Desktop Dashboard.
182182

183183
2. Locate the container you'd like to stop.
184184

185185
3. Select the **Delete** action in the Actions column.
186186

187-
188-
189-
190-
![A screenshot of Docker dashboard showing how to delete the container](images/delete-the-container.webp?border=true)
187+
![A screenshot of Docker Desktop Dashboard showing how to delete the container](images/delete-the-container.webp?border=true)
191188

192189

193190
## Additional resources
194191

195192
The following resources will help you learn more about bind mounts:
196193

197-
198194
* [Manage data in Docker](/storage/)
199195
* [Volumes](/storage/volumes/)
200196
* [Bind mounts](/storage/bind-mounts/)

content/get-started/docker-concepts/the-basics/what-is-a-container.md

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ Use the following instructions to run a container.
5656

5757
2. Specify `welcome-to-docker` in the search input and then select the **Pull** button.
5858

59-
![A screenshot of the Docker Dashboard showing the search result for welcome-to-docker Docker image ](images/search-the-docker-image.webp?border=true&w=1000&h=700)
59+
![A screenshot of the Docker Desktop Dashboard showing the search result for welcome-to-docker Docker image ](images/search-the-docker-image.webp?border=true&w=1000&h=700)
6060

6161
3. Once the image is successfully pulled, select the **Run** button.
6262

@@ -66,15 +66,15 @@ Use the following instructions to run a container.
6666

6767
6. In the **Host port**, specify `8080`.
6868

69-
![A screenshot of Docker Dashboard showing the container run dialog with welcome-to-docker typed in as the container name and 8080 specified as the port number](images/run-a-new-container.webp?border=true&w=550&h=400)
69+
![A screenshot of Docker Desktop Dashboard showing the container run dialog with welcome-to-docker typed in as the container name and 8080 specified as the port number](images/run-a-new-container.webp?border=true&w=550&h=400)
7070

7171
7. Select **Run** to start your container.
7272

7373
Congratulations! You just ran your first container! 🎉
7474

7575
### View your container
7676

77-
You can view all of your containers by going to the **Containers** view of the Docker Dashboard.
77+
You can view all of your containers by going to the **Containers** view of the Docker Desktop Dashboard.
7878

7979
![Screenshot of the container view of the Docker Desktop GUI showing the welcome-to-docker container running on the host port 8080](images/view-your-containers.webp?border=true&w=750&h=600)
8080

@@ -92,25 +92,25 @@ For this container, the frontend is accessible on port `8080`. To open the websi
9292

9393
Docker Desktop lets you explore and interact with different aspects of your container. Try it out yourself.
9494

95-
1. Go to the **Containers** view in the Docker Dashboard.
95+
1. Go to the **Containers** view in the Docker Desktop Dashboard.
9696

9797
2. Select your container.
9898

9999
3. Select the **Files** tab to explore your container's isolated file system.
100100

101-
![Screenshot of the Docker Dashboard showing the files and directories inside a running container](images/explore-your-container.webp?border)
101+
![Screenshot of the Docker Desktop Dashboard showing the files and directories inside a running container](images/explore-your-container.webp?border)
102102

103103
### Stop your container
104104

105105
The `docker/welcome-to-docker` container continues to run until you stop it.
106106

107-
1. Go to the **Containers** view in the Docker Dashboard.
107+
1. Go to the **Containers** view in the Docker Desktop Dashboard.
108108

109109
2. Locate the container you'd like to stop.
110110

111111
3. Select the **Stop** action in the **Actions** column.
112112

113-
![Screenshot of the Docker Dashboard with the welcome container selected and being prepared to stop](images/stop-your-container.webp?border)
113+
![Screenshot of the Docker Desktop Dashboard with the welcome container selected and being prepared to stop](images/stop-your-container.webp?border)
114114

115115
{{< /tab >}}
116116
{{< tab name="Using the CLI" >}}

content/get-started/docker-concepts/the-basics/what-is-an-image.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -48,17 +48,17 @@ In this hands-on, you will learn how to search and pull a container image using
4848

4949
### Search for and download an image
5050

51-
1. Open the Docker Dashboard and select the **Images** view in the left-hand navigation menu.
51+
1. Open the Docker Desktop Dashboard and select the **Images** view in the left-hand navigation menu.
5252

53-
![A screenshot of the Docker Dashboard showing the image view on the left sidebar](images/click-image.webp?border=true&w=1050&h=400)
53+
![A screenshot of the Docker Desktop Dashboard showing the image view on the left sidebar](images/click-image.webp?border=true&w=1050&h=400)
5454

5555
2. Select the **Search images to run** button. If you don't see it, select the _global search bar_ at the top of the screen.
5656

57-
![A screenshot of the Docker Dashboard showing the search ta](images/search-image.webp?border)
57+
![A screenshot of the Docker Desktop Dashboard showing the search ta](images/search-image.webp?border)
5858

5959
3. In the **Search** field, enter "welcome-to-docker". Once the search has completed, select the `docker/welcome-to-docker` image.
6060

61-
![A screenshot of the Docker Dashboard showing the search results for the docker/welcome-to-docker image](images/select-image.webp?border=true&w=1050&h=400)
61+
![A screenshot of the Docker Desktop Dashboard showing the search results for the docker/welcome-to-docker image](images/select-image.webp?border=true&w=1050&h=400)
6262

6363
4. Select **Pull** to download the image.
6464

@@ -67,11 +67,11 @@ In this hands-on, you will learn how to search and pull a container image using
6767

6868
Once you have an image downloaded, you can learn quite a few details about the image either through the GUI or the CLI.
6969

70-
1. In the Docker Dashboard, select the **Images** view.
70+
1. In the Docker Desktop Dashboard, select the **Images** view.
7171

7272
2. Select the **docker/welcome-to-docker** image to open details about the image.
7373

74-
![A screenshot of the Docker Dashboard showing the images view with an arrow pointing to the docker/welcome-to-docker image](images/pulled-image.webp?border=true&w=1050&h=400)
74+
![A screenshot of the Docker Desktop Dashboard showing the images view with an arrow pointing to the docker/welcome-to-docker image](images/pulled-image.webp?border=true&w=1050&h=400)
7575

7676
3. The image details page presents you with information regarding the layers of the image, the packages and libraries installed in the image, and any discovered vulnerabilities.
7777

content/get-started/workshop/08_using_compose.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -253,9 +253,9 @@ Now that you have your `compose.yaml` file, you can start your application.
253253

254254
4. At this point, you should be able to open your app in your browser on [http://localhost:3000](http://localhost:3000) and see it running.
255255

256-
## See the app stack in Docker Dashboard
256+
## See the app stack in Docker Desktop Dashboard
257257

258-
If you look at the Docker Dashboard, you'll see that there is a group named **getting-started-app**. This is the project name from Docker
258+
If you look at the Docker Desktop Dashboard, you'll see that there is a group named **getting-started-app**. This is the project name from Docker
259259
Compose and used to group the containers together. By default, the project name is simply the name of the directory that the
260260
`compose.yaml` was located in.
261261

@@ -265,15 +265,15 @@ quickly see what container is your app and which container is the mysql database
265265

266266
## Tear it all down
267267

268-
When you're ready to tear it all down, simply run `docker compose down` or hit the trash can on the Docker Dashboard
268+
When you're ready to tear it all down, simply run `docker compose down` or hit the trash can on the Docker Desktop Dashboard
269269
for the entire app. The containers will stop and the network will be removed.
270270

271271
>**Warning**
272272
>
273273
>By default, named volumes in your compose file are not removed when you run `docker compose down`. If you want to
274274
>remove the volumes, you need to add the `--volumes` flag.
275275
>
276-
>The Docker Dashboard does not remove volumes when you delete the app stack.
276+
>The Docker Desktop Dashboard does not remove volumes when you delete the app stack.
277277

278278
## Summary
279279

0 commit comments

Comments
 (0)