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
Pushing Docker Images to a Docker Repository Rumi, December 21, 2021 The next logical step after creating a new image from an existing image is to share it with a select few of your friends, the whole world on Docker Hub, or other Docker registry that you have access to. To push an image to Docker Hub or any other Docker… Continue Reading
Docker Commands Rumi, December 21, 2021 Working with Docker Images Docker containers are built from Docker images. By default, Docker pulls these images from Docker Hub, a Docker registry managed by Docker, the company behind the Docker project. Anyone can host their Docker images on Docker Hub, so most applications and Linux distributions you’ll need will have… Continue Reading
Install Docker on Debain 10 Rumi, December 21, 2021 Installing Docker The Docker installation package available in the official Debian repository may not be the latest version. To ensure we get the latest version, we’ll install Docker from the official Docker repository. To do that, we’ll add a new package source, add the GPG key from Docker to ensure… Continue Reading
Install portainer on ubuntu 16 docker Rumi, July 30, 2020July 30, 2020 Step 1 – Install Docker on Ubuntu 16.04 LTS Before installing docker packages, please update the repository on your system and upgrade packages. sudo apt update sudo apt upgrade Now install docker using the apt command below. sudo apt install docker.io -y After the installation is complete, start docker service… Continue Reading
Sharing Volumes Between Containers Rumi, July 28, 2020 There are many situations where it is useful to share a Docker volume between containers, and several ways to accomplish this goal. Sharing a Volume on the Host If you create a volume on the host machine, it can be used by multiple different containers at once. This allows you… Continue Reading