Docker CLI (EN)
ToolCommand line interface for controlling Docker operations
Docker CLI Architecture
flowchart TD A[Docker CLI] --> B[Docker Daemon] B --> C[Docker Engine] C --> D[Container Runtime] D --> E[Kernel] A --> F[Docker Compose] A --> G[Docker Machine] A --> H[Docker Swarm]
In Context
- Typically used together with Dockerfile, Docker Compose, and Docker Hub
- Related to: Docker Engine, Docker Images, Docker Container, Docker Volumes
- Example usage: docker run -d -p 80:80 nginx to start an Nginx container