docker · git:20260308.ae0a2f8 · 2026-03-08 · sha256 48cf632142001fb2

docker git:20260308.ae0a2f8A

Immutable. This exact content is served forever at /api/v1/blob/48cf632142001fb2.

---
name: docker
description: Manage Docker containers and images. Use when the user asks to build, run, stop, or inspect containers, view logs, or work with docker compose.
compatibility: Requires docker
---
# Docker Operations

## List containers
```bash
docker ps -a
```

## Build image
```bash
docker build -t NAME:TAG .
```

## Run container
```bash
docker run -d --name NAME IMAGE
```

## View logs
```bash
docker logs CONTAINER
```

## Compose
```bash
docker compose up -d
docker compose down
```