Docker containers
Built images are displayed in the Docker tool under Images. You can run them from there. For steps how to pull and build images, see Docker images.
Interacting with containers
The containers are displayed in the Docker tool.
Execute a command inside a running container
Near a running container, click Open Terminal.
Use the opened terminal to execute commands. For example:
ls /tmp
List the contents of the /tmp directory
mkdir /tmp/my-new-dir
Create the my-new-dir directory inside the /tmp directory
/bin/bash
Start a
bash
session
View detailed information about a running container
From the container context menu, select Inspect.
A new editor tab opens with the container details in the form of a JSON object.
For more information, refer to the docker inspect command reference.
Attach a console to the container output
From the container context menu, select Attach.
The console is attached to the output of the ENTRYPOINT process running inside a container, and is rendered on the Attach tab.
For more information, refer to the docker attach command reference.