mirror of
https://github.com/kevinveenbirkenbach/computer-playbook.git
synced 2025-04-21 23:42:24 +02:00
11 lines
186 B
Markdown
11 lines
186 B
Markdown
# Docker Compose
|
|
|
|
## Delete all containers, networks and volumes
|
|
```bash
|
|
docker compose down -v
|
|
```
|
|
|
|
## Show the state of all containers
|
|
```bash
|
|
watch -n 2 "docker compose ps -a"
|
|
``` |