Xingyao Wang fef287fcb0
Always install Docker with MTU 1450 configuration (#10007)
Co-authored-by: openhands <openhands@all-hands.dev>
2025-08-04 21:21:03 +08:00

32 lines
546 B
Markdown

---
name: docker
type: knowledge
version: 1.0.0
agent: CodeActAgent
triggers:
- docker
- container
---
# Docker Usage Guide
## Starting Docker in Container Environments
Please check if docker is already installed. If so, to start Docker in a container environment:
```bash
# Start Docker daemon in the background
sudo dockerd > /tmp/docker.log 2>&1 &
# Wait for Docker to initialize
sleep 5
```
## Verifying Docker Installation
To verify Docker is working correctly, run the hello-world container:
```bash
sudo docker run hello-world
```