docker-cli

Installation
SKILL.md

Docker CLI Guide

Docker is a containerization platform that packages applications and dependencies into isolated containers. This guide provides essential workflows and quick references for common Docker operations.

Quick Start

# Check Docker installation
docker --version

# Run your first container
docker run hello-world

# Run interactive container
docker run -it ubuntu bash

# Run container in background
docker run -d nginx
Installs
5
First Seen
Jan 26, 2026
docker-cli — leobrival/topographic-plugins-official