Save products you love by clicking the heart icon.
Master Docker, Kubernetes, Docker Compose, and Helm with these production-ready reference sheets
Four essential cheatsheets for anyone running containers in production.
€14.00
# Build an image from Dockerfile
docker build -t myapp:v1.0 .
# Run container with port mapping and volume
docker run -d -p 8080:80 -v ./data:/app/data --name myapp myapp:v1.0
# View logs and follow output
docker logs -f myapp
# Clean up unused resources
docker system prune -af