This document contains useful Docker commands to manage containers, images, and volumes.
docker images
docker volume ls
docker ps
docker ps -a
docker start ubuntu_vulkan_api
docker attach ubuntu_vulkan_api
Or:
docker exec -it ubuntu_vulkan_api bash
exit
to leave the container.Ctrl + Q
(Read Escape Sequence) to leave the terminal without stopping the container.For more Docker commands and details, refer to the Docker documentation.