Installation and unloading of docker under Cento system

Introduction to Docker Docker An open source application container engine that allows developers to package their applications and dependencies into a portable container and then publish them to any popular application. Linux Virtualization can also be achieved on machines. Containers are completely sandboxed with no interfaces (similar ...

Posted by jeff_valken on Fri, 05 Jul 2019 17:43:59 -0700

How to Happily Install Kubernetes in China

Installing K8S in China has always been a headache for everyone. The key to all kinds of wall-climbing is that you do not know what tools you need to download.Fucking.The key is that most tutorials are not too old or frustrated.Today, let me tell you how to have a pleasant installation in China. Installation Environment Installation is done ...

Posted by tony_l on Tue, 02 Jul 2019 09:47:40 -0700

Learn docker persistent storage and data sharing from scratch

Sometimes containers produce some data that we don't want to delete with the removal of the container.To ensure data security, it is commonly used in databases. First, look at the differences between container s and image s: container containers are created on top of images. container layer s can read and write data while images are read-on ...

Posted by DaRkZeAlOt on Mon, 01 Jul 2019 10:07:13 -0700

Doker Tutorial - Mirror Operations

More commands are available on the official website: https://docs.docker.com/engine/reference/commandline/docker/ View the current image list docker image ls [OPTIONS] [REPOSITORY[:TAG]] List images Aliases: ls, images, list Options: -a, --all Show all images (default hides intermediate images) --digests ...

Posted by pcjackson06 on Thu, 27 Jun 2019 10:17:06 -0700

Simple test of Docker CE overlay network

In docker's various network modes, bridge's network mode is to communicate with dockers on the same host. If we want to achieve cross-node communication between dockers on multiple hosts, we need to use overlay network.In docker swarm mode, the container created by docker service creation defaults to the overlay network mode named ingress, in w ...

Posted by turansky on Fri, 21 Jun 2019 12:34:09 -0700

Docker's Six Initials: Basic Guidance

Link to the original text: http://www.itbus.tech/detail.html?id=8733 Preparatory knowledge Although we'll introduce a lot of concepts next, it's better to know what Docker is and why you use it in advance. Let's assume that you are familiar with the following knowledge: + IP Address and Port + Virtual Machine + Editing configuration file ...

Posted by DigitalExpl0it on Wed, 19 Jun 2019 16:06:11 -0700

Docker's Six Initials - Stack

Link to the original text: http://www.itbus.tech/detail.html?id=8739 Preparing knowledge Install Docker (version minimum 1.13). Read through Docker's Six Initials - Swarm And complete the content introduced in it. Copy a copy of docker-compose.yml. Make sure your virtual machines are available. Use docker-machines to view, execute docker-ma ...

Posted by nashruddin on Mon, 17 Jun 2019 13:01:33 -0700

Docker Fixed IP Settings

Docker is often used to simulate the deployment of a project in a production environment. It often requires several Docker containers to be opened at the same time. Sometimes the installed software needs to bind to other containers in the Docker LAN, such as the intranet IP of other containers when deploying the MongoDB replica set. However, ev ...

Posted by sellfisch on Fri, 14 Jun 2019 18:31:00 -0700

Cassandra database installation and deployment

Installation version cassandra-3.11.4 System version more /etc/redhat-release CentOS Linux release 7.6.1810 (Core) Dead work Cassandra database is based on Java platform, so it can run in many operating systems that support Java technology, and it can start working with very little disk space and available memory. For the applications describe ...

Posted by gabe on Wed, 12 Jun 2019 16:46:55 -0700

To get started with URLOS application development, you first need to understand how docker containers are used.

URLOS is based on docker container. Before we start to develop URLOS, we need to master the basic knowledge of docker. This article takes the basic usage of docker container as an example to quickly give you a comprehensive impression of docker. Introduction to Docker Docker is an open source application container engine, which is based on the ...

Posted by jude0311 on Wed, 12 Jun 2019 15:12:49 -0700