diff --git a/content/get-started/docker-concepts/running-containers/images/delete-containers.webp b/content/get-started/docker-concepts/running-containers/images/delete-containers.webp index 39d948250ffd..50ab05f7f6ba 100644 Binary files a/content/get-started/docker-concepts/running-containers/images/delete-containers.webp and b/content/get-started/docker-concepts/running-containers/images/delete-containers.webp differ diff --git a/content/get-started/docker-concepts/running-containers/images/exec-into-postgres-container.webp b/content/get-started/docker-concepts/running-containers/images/exec-into-postgres-container.webp index e077732e9666..27a99a161b5d 100644 Binary files a/content/get-started/docker-concepts/running-containers/images/exec-into-postgres-container.webp and b/content/get-started/docker-concepts/running-containers/images/exec-into-postgres-container.webp differ diff --git a/content/get-started/docker-concepts/running-containers/images/list-containers.webp b/content/get-started/docker-concepts/running-containers/images/list-containers.webp index 6b8d745bf7ad..326ec76e1a26 100644 Binary files a/content/get-started/docker-concepts/running-containers/images/list-containers.webp and b/content/get-started/docker-concepts/running-containers/images/list-containers.webp differ diff --git a/content/get-started/docker-concepts/running-containers/images/published-ports.webp b/content/get-started/docker-concepts/running-containers/images/published-ports.webp index 44d902443830..26482c9f259b 100644 Binary files a/content/get-started/docker-concepts/running-containers/images/published-ports.webp and b/content/get-started/docker-concepts/running-containers/images/published-ports.webp differ diff --git a/content/get-started/docker-concepts/running-containers/images/running-postgres-containers.webp b/content/get-started/docker-concepts/running-containers/images/running-postgres-containers.webp index 4103e6c7ad0c..90d859dc093a 100644 Binary files a/content/get-started/docker-concepts/running-containers/images/running-postgres-containers.webp and b/content/get-started/docker-concepts/running-containers/images/running-postgres-containers.webp differ diff --git a/content/get-started/docker-concepts/running-containers/multi-container-applications.md b/content/get-started/docker-concepts/running-containers/multi-container-applications.md index 061a7333ed1f..6acf2b266393 100644 --- a/content/get-started/docker-concepts/running-containers/multi-container-applications.md +++ b/content/get-started/docker-concepts/running-containers/multi-container-applications.md @@ -196,12 +196,12 @@ Navigate to the root of the project directory. Inside this directory, you'll fin ```console - Running 5/5 - ✔ Network nginx-nodejs-redis_default Created 0.0s - ✔ Container nginx-nodejs-redis-web1-1 Started 0.1s - ✔ Container nginx-nodejs-redis-redis-1 Started 0.1s - ✔ Container nginx-nodejs-redis-web2-1 Started 0.1s - ✔ Container nginx-nodejs-redis-nginx-1 Started + ✔ Network nginx-node-redis_default Created 0.0s + ✔ Container nginx-node-redis-web2-1 Created 0.1s + ✔ Container nginx-node-redis-web1-1 Created 0.1s + ✔ Container nginx-node-redis-redis-1 Created 0.1s + ✔ Container nginx-node-redis-nginx-1 Created + ``` 2. If you look at the Docker Desktop Dashboard, you can see the containers and dive deeper into their configuration. diff --git a/content/get-started/docker-concepts/running-containers/persisting-container-data.md b/content/get-started/docker-concepts/running-containers/persisting-container-data.md index 3d9705175b11..ba9e6f011910 100644 --- a/content/get-started/docker-concepts/running-containers/persisting-container-data.md +++ b/content/get-started/docker-concepts/running-containers/persisting-container-data.md @@ -128,13 +128,13 @@ In this guide, you'll practice creating and using volumes to persist data create ### View volume contents -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. +The Docker Desktop Dashboard provides the ability to view the contents of any volume, as well as the ability to export, import, empty, delete and clone volumes. 1. Open the Docker Desktop Dashboard and navigate to the **Volumes** view. In this view, you should see the **postgres_data** volume. 2. Select the **postgres_data** volume’s name. -3. The **Data** tab shows the contents of the volume and provides the ability to navigate the files. Double-clicking on a file will let you see the contents and make changes. +3. The **Stored Data** tab shows the contents of the volume and provides the ability to navigate the files. The **Container in-use** tab displays the name of the container using the volume, the image name, the port number used by the container, and the target. A target is a path inside a container that gives access to the files in the volume. The **Exports** tab lets you export the volume. Double-clicking on a file will let you see the contents and make changes. 4. Right-click on any file to save it or delete it.