Docker CLI commands for managing containers and images
/plugin marketplace add leobrival/topographic-studio-plugins/plugin install cli-toolkit@topographic-studio-pluginsComprehensive cheat-sheet for `docker` commands to manage containers, images, networks, and volumes. ## Installation & Configuration ## Authentication & Registry ### `docker login` Authenticate with Docker registry. ### `docker logout` Log out from Docker registry. ## Container Management ### `docker run` Create and start a new container. ### `docker ps` List containers. ### `docker exec` Execute commands in running containers. ### `docker start` / `docker stop` / `docker restart` Control container lifecycle. ### `docker logs` View container logs. ### `dock...