CLI playground
The CLI playground helps you learn Docker commands while staying inside the Oxidock workflow.
What it does
- Shows command syntax before you run an action.
- Helps you understand flags, arguments, and expected output.
- Adds command safety cues for operations that can mutate or delete resources.
- Keeps command learning close to the resource you are managing.
Example commands
docker ps --all
docker stop web
docker rm web
docker image prune
Risk levels
| Risk | Example | Behavior |
|---|---|---|
| Low | docker ps | Read-only command. |
| Medium | docker stop web | Mutates runtime state. |
| High | docker rm web | Removes a resource and should require explicit review. |
Command School
Command School will expand this model into a structured Docker learning path. For now, the CLI playground is the bridge between Oxidock's UI and Docker command fluency.
