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
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
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
Deploying a Highly Available Redis Sentinel Cluster with Docker
Redis Sentinel Architecture OverviewRedis Sentinel provides a robust high-availability solution for Redis instances. Unlike Redis Cluster, which handles data sharding across multiple masters, Sentinel focuses on monitoring, notification, and automatic failover for a single master-slave topology. The system monitors master and slave instances, n ...
Posted on Sun, 26 Jul 2026 17:08:32 +0000 by Harley1979
Building Docker Images with Dockerfiles
Building Docker Images with Dockerfiles
A Dockerfile serves as a text document containing all the commands required to assemble a Docker image. The docker build command processes these instructions to create an executable image. You can specify a Dockerfile from any location in your filesystem using the -f flag with the docker build command.
...
Posted on Fri, 17 Jul 2026 17:27:25 +0000 by Naez
Deploying a Containerized Application on Kubernetes
To deploy an application on Kubernetes, developers must first create a container image. The image must then be organized into a format that Kubernetes can interpret, which is achieved by writing configuration files. These files, typically in YAML format, define the application's containers, parameters, and settings. Kubernetes emphasizes this d ...
Posted on Thu, 16 Jul 2026 17:06:02 +0000 by daria
Deploying Docker Engine on Ubuntu 20.04
Overview of Docker Containerization
Docker functions as an open-source platform designed for containerization, facilitating the build, test, and deployment processes. Applications are packaged into movable containers that include all necessary dependencies, ensuring consistent execution across different environments. This technology is integral ...
Posted on Sun, 12 Jul 2026 16:24:14 +0000 by rmbarnes82
Installing Docker on Ubuntu 22.04 Systems
Docker enables containerization of applications with their dependencies, providing a standardized deployment environment. This guide covers the installation process on Ubuntu 22.04.
System Update
Begin by updating the package repository and upgrading existing packages:
sudo apt update
sudo apt full-upgrade -y
Install Required Dependencies
Add ...
Posted on Sun, 12 Jul 2026 16:20:15 +0000 by nca
Deploying YApi API Management Platform via Docker Containers
Infrastructure Initialization
Prepare the underlying storage layer before configuring the application server. YApi requires a persistent MongoDB instance to store workspace metadata, user accounts, and endpoint definitions.
docker pull mongo:latest
docker run -d \
--name yapi_mongo_vault \
--restart unless-stopped \
-p 27017:27017 \
-v ...
Posted on Thu, 09 Jul 2026 17:00:02 +0000 by slands10
Essential Docker Commands and Configuration Guide
Essential Docker Commands and Configuration Guide
Recently, while deploying a Spring Boot project with separate front-end and back-end components, I found Docker to be extremely convenient. Here's a summary of essenttial Docker commands and configurations.
1. Recommended Resources
Docker Documentation: https://docs.docker.com/ - Official docum ...
Posted on Wed, 08 Jul 2026 17:10:29 +0000 by a-scripts.com