Everyday Docker Commands Reference
The docker run instruction is the quickest way to spin up a new container from an image. For instance, to print a greeting and exit:
docker run debian:11-slim /bin/echo "Hello container"
The command above instructs Docker to:
Locate the debian:11-slim image locally; if missing, pull it from Docker Hub.
Create a transient container f ...
Posted on Mon, 03 Aug 2026 16:41:40 +0000 by Homer30
Installing Docker on Windows Systems
Installing WSL
Before installing Docker, ensure that the Windows Subsystem for Linux (WSL) is properly configured. This process is straightforward and can be completed by following these steps:
To enable WSL, open Windows PowerShell as an administrator and run the following command:
wsl --install
Verify the installation by executing:
wsl.exe - ...
Posted on Mon, 03 Aug 2026 16:22:14 +0000 by generic88
Deploying ELK Stack with Docker for Log Management
Docker Installation of Elasticsearch
For most production environments, Elasticsearch is pre-installed on servers. If you need to set it up yourself, Docker provides the easiest method.
Pull the Docker image:
docker pull docker.elastic.co/elasticsearch/elasticsearch:7.5.2
Create and start the container:
docker run -d --name elasticsearch-node - ...
Posted on Sun, 02 Aug 2026 16:50:54 +0000 by wayz1229
Understanding and Implementing Docker Containers
Core Concepts
What is Docker?
Traditional virtualization relies on virtual machines, which solve cross-platform compatibility issues but are often too resource-intensive, slow to start, and demanding in terms of system resources. This limited their widespread adoption in the internet industry. Docker's container technology, while not fully cros ...
Posted on Sat, 01 Aug 2026 16:48:30 +0000 by Firestorm ZERO
Deploying Zabbix Using Docker
docker run --name mysql-server -t \
-v /data/mysql/data:/var/lib/mysql \
-e MYSQL_DATABASE="zabbix" \
-e MYSQL_USER="zabbix" \
-e MYSQL_PASSWORD="123456" \
-e MYSQL_ROOT_PASSWORD="123456" \
--restart=unless-stopped \
-p 3306:3306 \
-d mysql:8.0 \
--character-set-server=utf8 --collation-s ...
Posted on Sat, 01 Aug 2026 16:18:47 +0000 by Remote4ever
Effective Docker Setup for RabbitMQ
Select the official image from the registry based on system preferences. Two common variations include standard Ubuntu and minimal Alpine builds.
Retrieving the Image
docker pull rabbitmq:3.9.10-management
Executing the Instance
Launch the service in the background with persistent restart policies. Ensure exposure of ports 5672 (AMQP), 15672 ( ...
Posted on Thu, 30 Jul 2026 16:15:08 +0000 by libertyct
Deploying High-Performance Object Storage with MinIO in Docker
Running the Service Container
Acquire a specific MinIO release image from Docker Hub:
docker pull minio/minio:RELEASE.2025-04-22T22-12-26Z
Launch a container with the API and web console ports mapped. Adjust the host bind-mount paths as appropriate for your environment:
docker run -d \
--name minio \
-p 9000:9000 \
-p 9001:9001 \
-v /o ...
Posted on Wed, 29 Jul 2026 16:39:43 +0000 by bex1111
Building Custom Docker Images with Dockerfile Syntax
A Dockerfile is a plain-text recipe that defines how to assemble a Docker image. It consists of a series of instructions executed sequentially by the docker build command. Rather than manually configuring containers, Dockerfiles enable reproducible, version-controlled, and automated image creation.
Below is a modernized Redis Dockerfile example ...
Posted on Wed, 29 Jul 2026 16:35:44 +0000 by Mad_Mike
Essential Docker Commands and Practical Usage Examples
Managing Docker Images
The following commands allow you to work with Docker images. Replace image_name with the actual image name and container_name for container references.
# Pull an image from a registry
docker pull ubuntu:20.04
# List all locally available images
docker images
# Remove a specific image by name or ID
docker rmi ubuntu:20.0 ...
Posted on Mon, 27 Jul 2026 16:51:05 +0000 by prcollin
Installing Docker Engine on Ubuntu Systems
Adding the Official Docker Repository
Follow these steps to configure the Apt package manager with Docker's official package source.
First, update the package index and install prerequisite utilities:
sudo apt update
sudo apt install ca-certificates curl
The ca-certificates package contains root certificaets for verifying secure HTTPS connecti ...
Posted on Sun, 26 Jul 2026 17:11:17 +0000 by footiemadman007