Skip to content
Bots!
Bots!
  • About
    • Myself
    • আমার দোয়া
  • Bookmarks
    • Bookmarks
    • My OCI Bookmarks
    • Useful Proxmox Commands & Links
    • Learning Nano
    • Useful Sites
    • Useful Virtualbox Command
    • Useful MySQL Command
    • Useful Linux Command
    • BTT-CAS
  • Resources
    • Webinar on Cloud Adoption for Project Managers
  • Photos
  • Videos
  • Downloads
Bots!

Install Docker and Docker Compose in Debian 12

Rumi, February 5, 2026

Prerequisites

Update your system’s package list and install the necessary packages for a secure connection to the Docker repository:

sudo apt update
sudo apt install ca-certificates curl gnupg

1. Set Up the Docker Repository 

To set up the Docker repository, you need to add Docker’s official GPG key and the repository to your system’s APT sources.
Create the directory for Docker’s GPG key:

sudo install -m 0755 -d /etc/apt/keyrings

Add Docker’s official GPG key and set up the stable repository:

sudo curl -fsSL https://download.docker.com/linux/debian/gpg -o /etc/apt/keyrings/docker.asc
sudo chmod a+r /etc/apt/keyrings/docker.asc
echo \
"deb [arch=$(dpkg --print-architecture) signed-by=/etc/apt/keyrings/docker.asc] https://download.docker.com/linux/debian \
$(. /etc/os-release && echo "$VERSION_CODENAME") stable" | sudo tee /etc/apt/sources.list.d/docker.list > /dev/null

Update the package index:

sudo apt update

2. Install Docker and Docker Compose 

Install Docker Engine, CLI, containerd, and the Docker Compose plugin using the following command:
sudo apt install docker-ce docker-ce-cli containerd.io docker-buildx-plugin docker-compose-plugin

The Docker service starts automatically after installation.

3. Verify the Installation

Check that the Docker service is running:bash

sudo systemctl status docker

Verify the installation by running a test container:bash

sudo docker run hello-world

Confirm the Docker Compose version (note that the command for v2 does not include a hyphen):

docker compose version

4. Manage Docker as a Non-Root User (Optional, Recommended)

By default, root privileges are needed to run Docker commands. To use Docker without sudo, add your user to the docker group:

sudo usermod -aG docker $USE
Administrations Configurations (Linux) DebianDebian 12Docker

Post navigation

Previous post

Leave a Reply Cancel reply

Your email address will not be published. Required fields are marked *

Myself…

Hi, I am Hasan T. Emdad Rumi, an IT Project Manager & Consultant, Virtualization & Cloud Savvyfrom Dhaka, Bangladesh. I have prior experience in managing numerous local and international projects in the area of Telco VAS & NMC, National Data Center & PKI Naitonal Root and CA Infrastructure. Also engaged with several Offshore Software Development Team.

Worked with Orascom Telecom-Banglalink, Network Elites as VAS partner, BTRC, BTT (Turkey) , Mango Teleservices Limited and Access to Informaiton (A2I-UNDP)

Currently working at Oracle Corporation as Principal Technology Solution and Cloud Architect.

You can reach me [h.t.emdad at gmail.com] and I will be delighted to exchange my views.

Tags

Apache Bind Cacti CentOS CentOS 6 CentOS 7 Debain Debian Debian 10 Debian 11 Debian 12 DKIM Docker icinga iptables Jitsi LAMP Letsencrypt Linux Munin MySQL Nagios Nextcloud NFS nginx openvpn pfsense php Postfix powerdns Proxmox RDP SSH SSL Ubuntu Ubuntu 16 Ubuntu 18 Ubuntu 20 Varnish virtualbox vpn Webmin Windows 10 XCP-NG zimbra

Topics

Recent Posts

  • Install Docker and Docker Compose in Debian 12 February 5, 2026
  • Install GUI on Debian 12 using CLI February 4, 2026
  • Configuring Multiple PHP Versions on Virtualmin January 30, 2026
  • Deploy a Container TIG (Telegraf, InfluxDB and Grafana) Stack January 24, 2026
  • Resetting password of another Linux by mounting disk December 15, 2025
  • “অমুক মাছ কেটে দিনে দশ হাজার কামাচ্ছে”- এসব গল্প এখন অনেকেই শোনায় November 22, 2025
  • Proxmox VM with NAT using Host Server November 21, 2025
  • Torrent Download Script with Aria2C on Debian 12 using Command Line Interface November 7, 2025
  • Install phpsysinfo on Debain Linux November 7, 2025
  • Delete OpenVPN Access Server Logs November 1, 2025

Archives

Top Posts & Pages

  • Install Docker and Docker Compose in Debian 12
©2026 Bots! | WordPress Theme by SuperbThemes