Add info about bulk actions for containers, new logs functionality and adding environment variables to an image run - Merge for DD 4.10 (#14980)

* Add info about bulk actions for containers

* add logs functionality

* add logs functionality

* add info on environment variables
This commit is contained in:
Allie Sadler 2022-06-30 17:05:25 +01:00 committed by GitHub
parent 3293e81977
commit 81044965b2
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 17 additions and 5 deletions

View File

@ -92,7 +92,12 @@ From the Docker Dashboard, select the example voting application we started earl
The **Containers** view lists all the containers running on the application and contains a detailed logs view. It also allows you to start, stop, or delete the application. Use the **Search** option at the bottom of the logs view to search application logs for specific events, or select the **Copy** icon to copy the logs to your clipboard.
From the **Containers** view you can also select and bulk delete multiple containers at once.
From the **Containers** view you can also perform the following actions on multiple containers at once:
- Pause
- Resume
- Stop
- Start
- Delete
Click **Open in Visual Studio Code** to open the application in VS Code. Hover over the list of containers to see some of the core actions you can perform.
@ -102,7 +107,14 @@ Click **Open in Visual Studio Code** to open the application in VS Code. Hover o
Click on a specific container for detailed information about the container. The **container view** displays **Logs**, **Inspect**, and **Stats** tabs and provides quick action buttons to perform various actions.
- Select **Logs** to see logs from the container. You can also search the logs for specific events and copy the logs to your clipboard.
- Select **Logs** to see logs from the container. You can also:
- Use `Cmd + f`/`Ctrl + f` to open the search bar and find specific entries. Search matches are highlighted in yellow.
- Press `Enter` or `Shit + Enter` to jump to the next or previous search match respectively.
- Use the **Copy** icon in the top right-hand corner to copy all the logs to your clipboard.
- Automatically copy any logs content by highlighting a few lines or a section of the logs.
- Use the **Clear terminal** icon in the top right-hand corner to clear the logs terminal.
- Select and view external links that may be in your logs.
- Select **Inspect** to view low-level information about the container. You can see the local path, version number of the image, SHA-256, port mapping, and other details.
@ -132,11 +144,11 @@ Select **Dashboard** > **Images** to see the Redis image.
Now that you have a Redis image on your disk, lets run this image as a container:
1. From the Docker menu, select **Dashboard** > **Images**. This displays a list of images on your local disk.
1. From Docker Dashboard, select **Images**. A list of images on your local disk displays.
2. Select the Redis image from the list and click **Run**.
3. When prompted, click the **Optional settings** drop-down to specify a name, port, volumes, and click **Run**.
3. Optional step: When prompted, click the **Optional settings** drop-down to specify a name, port, volumes, environment variables and click **Run**.
To use the defaults, click **Run** without specifying any optional settings. This creates a new container from the Redis image and opens it on the **Container/Apps** view.
To use the defaults, click **Run** without specifying any optional settings. This creates a new container from the Redis image and opens it on the **Containers** view.
### Pull the latest image from Docker Hub