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!

Tag: Docker

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…

Continue Reading

Deploy a Container TIG (Telegraf, InfluxDB and Grafana) Stack

Rumi, January 24, 2026January 24, 2026

My simplified container based TIG stack is built using docker. The following standalone design supported more than 500+ VM to monitor data. Versions: Docker- Docker version 29.1.3, build f52814d Telegraf- Telegraf 1.14.3 (git: HEAD 1b35d6c2) Influxdb- 1.6.4 Grafana- 10.0.3 Here’s the TIG Docker Script- version: ‘3.7’ services: influxdb: image: influxdb:1.6.4…

Continue Reading

Deploye Minio using docker

Rumi, September 5, 2025

Here’the docker compose file to run: version: ‘3.8’ services: minio: image: minio/minio:RELEASE.2024-06-26T01-06-18Z container_name: minio ports: – “9000:9000” – “9001:9001” volumes: – /mnt/data/minio:/data environment: MINIO_ROOT_USER: minioadmin MINIO_ROOT_PASSWORD: minioadmin command: server /data –console-address “:9001” Src: https://hub.docker.com/r/minio/minio/tags?name=RELEASE.2024-06-26T01-06-18Z

Continue Reading

Setting Up Docker and Docker Compose on Debian 12

Rumi, December 27, 2024

Installing Docker on Debian 12 Before installing Docker, ensure your Debian system is up-to-date with the following command: sudo apt update && sudo apt upgrade -y Once your system is updated, install the necessary packages to allow apt to use a repository over HTTPS: sudo apt install apt-transport-https ca-certificates curl…

Continue Reading

Gitlab SMTP settings with Zimbra Mail

Rumi, December 22, 2024December 22, 2024

If you would rather send application email via an SMTP server instead of via Sendmail or Postfix, add the following configuration information to /etc/gitlab/gitlab.rb and run gitlab-ctl reconfigure. gitlab_rails[‘smtp_enable’] = true gitlab_rails[‘smtp_address’] = ‘mail.siteage.net’ gitlab_rails[‘smtp_port’] = 465 gitlab_rails[‘smtp_user_name’] = ‘gitlab@domain.com’ gitlab_rails[‘smtp_password’] = ‘password’ gitlab_rails[‘smtp_authentication’] = ‘login’ gitlab_rails[‘smtp_enable_starttls_auto’] = false gitlab_rails[‘gitlab_email_from’]…

Continue Reading

Start Docker container after linux boot

Rumi, February 7, 2024

Docker provides restart policies to control whether your containers start automatically when they exit, or when Docker restarts. Restart policies start linked containers in the correct order. Docker recommends that you use restart policies, and avoid using process managers to start containers. Restart policies are different from the –live-restore flag of the dockerd command. Using –live-restore lets you…

Continue Reading

How To Install and Use Docker Compose on Rocky Linux 8

Rumi, February 7, 2024

Step 1 — Installing Docker The Docker installation package available in the official Rocky Linux 8 repository may not be the latest version. To get the latest and greatest version, install Docker from the official Docker repository. This section shows you how to do just that. But first, let’s update…

Continue Reading

Install PHPIPAM using Docker on CentOS 7

Rumi, January 7, 2024

Update Docker Package Database. In a terminal window, type: sudo yum check-update Remove if any docker is preinstalled with your OS- sudo yum remove docker docker-client docker-client-latest docker-common docker-latest docker-latest-logrotate docker-logrotate docker-selinux docker-engine-selinux docker-engine Install the Dependencies sudo yum install -y yum-utils device-mapper-persistent-data lvm2 The –y switch indicates to the yum…

Continue Reading

Install Nginx Proxy Manager on CentOS 7

Rumi, November 22, 2023

Nginx Proxy Manager is built on docker container. So, we need to deploy Docker first. Update Docker Package Database. In a terminal window, type: sudo yum check-update Allow the operation to complete. Remove if any docker is preinstalled with your OS- sudo yum remove docker docker-client docker-client-latest docker-common docker-latest docker-latest-logrotate…

Continue Reading

Install Percona Monitoring and Management using Docker

Rumi, September 9, 2022

You can any distribution for installation- Rocky/Alma/CentoS 8 Stream. I assume you’ll use anyone of these instance. Step 1: Add Docker Repository Docker is not yet available on default repositories. Thankfully, an official repository has been provided by developers and we are going to add it first to the system….

Continue Reading
  • 1
  • 2
  • Next

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 Proxmox RDP Softether SSH SSL Ubuntu Ubuntu 16 Ubuntu 18 Ubuntu 20 Varnish virtualbox vpn Webmin Windows 10 XCP-NG zimbra

Topics

Recent Posts

  • Youtube MP3 Downloader Script using AI February 14, 2026
  • Install Softether VPN and create a Destination NAT (D-NAT) Rule to access the private Client VPN Node on a Debian 12 OS February 14, 2026
  • Deploying Pulse Monitoring for Proxmox Cluster Ecosystem February 13, 2026
  • Technitium DNS Web UI Configuration for Primary-Secondary Name Servers February 12, 2026
  • Technitium DNS with Primary-Slave Installation on Debian February 12, 2026
  • 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

Archives

Top Posts & Pages

  • Youtube MP3 Downloader Script using AI
©2026 Bots! | WordPress Theme by SuperbThemes