May 2024
M T W T F S S
 12345
6789101112
13141516171819
20212223242526
2728293031  

Categories

May 2024
M T W T F S S
 12345
6789101112
13141516171819
20212223242526
2728293031  

Docker installation on RHEL 7

Objective

The objective is to install Docker engine on Redhat 7 Linux using native docker script.

Requirements

Internet connection as well as a privileged access to your Redhat 7 Linux is required.

Difficulty

EASY

Conventions # – requires given command to be executed with root privileges either directly as a root user or by use […]

Docker centos7

Introduction

In previous posts we have seen the installation and working of Docker. This post will explain the installation of the Docker Community Edition (CE) on CentOS. If you are looking for the Ubuntu installation you should check our this post.

 

Step 1 | Remove Old Versions $ sudo yum remove docker docker-common docker-selinux […]

Docker issue x509: certificate has expired or is not yet valid

root@clusterserver3 ~]# docker pull centos Using default tag: latest Trying to pull repository docker.io/library/centos … Pulling repository docker.io/library/centos Error while pulling image: Get https://index.docker.io/v1/repositories/library/centos/images: x509: certificate has expired or is not yet valid [root@clusterserver3 ~]# update-ca-trust extract

Install docker ce on centos 7

Installing Docker On CentOS 7 / RHEL 7

Docker is a container virtualization technology that has gained widespread popularity in recent times; it offers a more efficient way to deploy the application. With Docker, the applications reside inside the container on top of the Linux operating system. Docker uses Kernel features such as cgroups and […]

docker commonly used command

docker commonly used command

1. View the docker information (version, info)

View the docker version docker version

Displays information about the docker system docker info

2. the operation of the image (search, pull, images, rmi, history)

Retrieve image docker search image_name

Download image docker pull image_name

List the mirror list; -a, –all […]

docker export mirroring and import mirroring

docker export mirroring and import mirroring

Export Mirror:

docker save IMAGENAME | bzip2 -9 -c>img.tar.bz2

Import Mirror (for one machine):

bzip2 -d -c

Kubernetes

What is Kubernetes? Kubernetes is a Google open source container cluster management system, based on Docker build containers, the use of Kubernetes can manage a number of Docker host in the container. The main functions are as follows: 1) abstracts multiple Docker hosts into one resource to manage containers in a clustered manner, including task […]

docker cmd

Basic Instructions

Download the image file

$ docker pull image_name

Activate or deactivate the container $ docker [start|stop] container_name

Download the image file

$ docker pull image_name

Activate or deactivate the container

$ docker [start|stop] container_name Build -> Start -> Execute command ( -ti parameter)

$ docker run -ti –name container_name image_name command Build -> […]

Kubernetes 1.4 Cluster SetupKubernetes 1.4 Cluster Setup

Kubernetes 1.4 Cluster SetupKubernetes 1.4 Cluster Setup

Distance kubernetes 1.4 has been released for some time, version 1.4 adds many new features, one of the more useful features is the addition to quickly create a cluster of basic needs only two commands will be able to build success; but due to reasons known to all […]

DOCKER Testing

Obtaining the Docker image

First, get the basic Docker image. The Docker image is published on the Docker Hub Registry (https://hub.docker.com/). You can search for published images with the docker search command. An example of searching the image of CentOS is here.

# docker search centos

INDEX NAME DESCRIPTION STARS OFFICIAL AUTOMATED docker.io docker.io/centos The […]