Skip to main content

rawops.dev

Skip to tool content

Docker CLI Builder

Build Docker commands interactively. Pick an action, choose options, copy the command. Covers run, exec, build, compose, networks, volumes, and system management.

command preview
Select an action below to start building your command|

Action

Common Recipes

Ready-to-use Docker commands. Click a recipe to populate the builder, or copy the command directly.

Click to load in builder

Click to load in builder

Click to load in builder

Click to load in builder

Click to load in builder

Click to load in builder

Click to load in builder

Click to load in builder

Click to load in builder

Click to load in builder

Click to load in builder

Docker CLI Reference

Docker is the most popular container runtime, used to build, ship, and run applications in isolated environments. The docker CLI is how you interact with the Docker daemon to manage containers, images, networks, and volumes.

Most Used Docker Commands

CommandPurposeExample
runCreate and start a containerdocker run -d -p 80:80 nginx
execRun command in containerdocker exec -it app /bin/sh
buildBuild an imagedocker build -t myapp:v1 .
compose upStart servicesdocker compose up -d --build
logsView container logsdocker logs -f --tail 50 app
psList containersdocker ps -a
stopStop containersdocker stop app
rmRemove containersdocker rm -f app
imagesList imagesdocker images
system pruneClean up everythingdocker system prune -a -f

docker run Flag Guide

Docker Compose

Docker Compose manages multi-container applications. The CLI integrated into Docker (docker compose) reads a docker-compose.yml and handles the full lifecycle: build, up, down, logs, restart, and more.

Privacy First

All command building happens in your browser. Your container names, image tags, environment variables, and infrastructure details are never sent to any server.

Related Tools & Resources