Biblioteca de referência

Cheatsheet de Comandos Docker

Comandos Docker para imagens, containers, logs e limpeza.

List containers

Referência: Show running and stopped containers.

docker ps -a

View logs

Referência: Inspect container output.

docker logs <container>

Build image

Referência: Build an image from a Dockerfile.

docker build -t app .

Clean unused data

Referência: Remove unused containers, networks, and cache.

docker system prune

Ferramentas relacionadas