redhat:docker-redhat:start

This is an old revision of the document!


Docker auf RHEL / CentOS 7

In this 3-article series, we will discuss about Docker, is an open-source lightweight virtualization tool which runs at top of Operating System level, allowing users to create, run and deploy applications, encapsulated into small containers.


Step 1 - Install deps, add docker Repo and setup Docker:

# yum install -y yum-utils device-mapper-persistent-data lvm2
# yum-config-manager --add-repo https://download.docker.com/linux/centos/docker-ce.repo
# yum update

# yum install docker-ce docker-ce-cli containerd.io
# systemctl start docker && systemctl enable docker

Step 2 - Install docker-compose binary:

# newest_version="$(curl -s https://api.github.com/repos/docker/compose/releases/latest | grep -Po '"tag_name": "\K.*?(?=")')"

# curl -L "https://github.com/docker/compose/releases/download/${newest_version}/docker-compose-$(uname -s)-$(uname -m)" -o /usr/local/bin/docker-compose
# chmod +x /usr/local/bin/docker-compose

# curl -L https://raw.githubusercontent.com/docker/compose/$(docker-compose version --short)/contrib/completion/bash/docker-compose -o /etc/bash_completion.d/docker-compose

# docker-compose version

Step 1 - Update the System and install Docker:

# apt-get update

FIXME

This type of Linux containers are proven to be fast, portable and secure. The processes that run in a Docker container are always isolated from the main host, preventing outside tampering.

https://www.linuxtechi.com/install-use-docker-compose-to-deploy-containers-in-centos7/

This tutorial provides a starting point on how to install Docker, create and run Docker containers on CentOS/RHEL 7/6, but barley scratches the surface of Docker.

https://www.tecmint.com/install-docker-and-learn-containers-in-centos-rhel-7-6/

  • redhat/docker-redhat/start.1549369913.txt.gz
  • Last modified: 2019/02/05 13:31
  • by michael