Method of deploying Docker image in IBM Cloud ROKS after it is built

Japanese version reference Docker イメージ ビルドして,IBM CloudのROKSにデプロイしてみた - Qiita This article describes how to create a new image in Docker and deploy it in the ROKS environment of IBM Cloud. The main steps are as follows Step 1 build Docker image  Step 2 push image to IBM Cloud Container Registry  Step 3 deploy on R ...

Posted by ceruleansin on Tue, 05 Oct 2021 01:00:02 +0200

docker installs wordpress, binds domain names through nginx reverse proxy, and configures https

Assuming that docker has been installed, if it is not installed, you can follow it 5-minute installation docker tutorial . 1, Download Image The latest version is downloaded by default. If you want to specify the corresponding version, you can add the version after the colon. For example, mysql:5.7: docker pull mysql:5.7 docker pull wordpre ...

Posted by xgd on Sun, 03 Oct 2021 01:15:11 +0200

Enterprise operation and maintenance practice -- docker learning notes 2.Docker network knowledge

1.Docker network docker's network function is still relatively weak. After docker is installed, three types of networks will be created automatically: bridge, host and none 1.1 bridging network Premise: Stop the docker compose warehouse in front docker-compose stop Install bridge network yum install bridge-utils -y brctl show docker ...

Posted by clicket on Sat, 02 Oct 2021 22:23:04 +0200

CentOS 7.9.2009 install kubernetes version 1.22

catalogue 1.1 close SWAP partition 1.2 install docker / kubedm / kubelet [all nodes] 1.3 create a Master node 1.4 add Node nodes to the current cluster 1.5 deployment container network (CNI) 1.6 testing Kuberntes cluster 1.7 deploying Web UI (Dashboard) 2. Related error reporting roleIP addressk8s-master192.168.237.5k8s-node01192. ...

Posted by mourisj on Sat, 02 Oct 2021 20:51:23 +0200

k8s build, easy to use, visual interface

k8s environment construction Create three virtual machines to ensure that the private network uses the same network card on the same network segment Kubedm create cluster Preparation environment (machine execution) Install docker # ( sudo yum -y install docker-ce-20.10.7 docker-ce-cli-20.10.7 containerd.io-1.4.6 ) # Set docker to start ...

Posted by libinaz on Sat, 02 Oct 2021 20:18:25 +0200

Alibaba cloud Linux server deployment docker project complete tutorial (springboot+mysql)

Install Docker Install Docker Compose (this is required for the operation of a complete project) This document mainly records the process of learning to deploy Docker. The article is followed by the deployment of open source projects based on Docker and Docker Compose. It's never too old to learn, keep an empty cup mentality, learn knowledg ...

Posted by Eskimo on Sat, 02 Oct 2021 03:54:05 +0200

[laughing numbly - throwing rotten] [SEED Labs 2.0] buffer overflow attack

The learning goal of this experiment is to let students practice the knowledge about buffer overflow vulnerability learned from the classroom, so as to obtain first-hand experience about the vulnerability. Buffer overflow refers to the situation that the program attempts to write data outside the pre allocated fixed length buffer boundary. M ...

Posted by jpschwartz on Sun, 26 Sep 2021 06:46:51 +0200

Docker compose one click deployment of distributed configuration center Apollo

brief introduction When talking about distributed, we must think of distributed configuration center, distributed log, distributed link tracking, etc In distributed deployment, businesses often have many configurations. For example, applications need to read some configuration information during startup and operation. Configuration basically ...

Posted by michibk on Thu, 23 Sep 2021 07:34:26 +0200

Kubernetes Pod introduction Pod scheduling

preface This is the sixth chapter of Kubernetes. We must build up the environment. It seems that we can't solve the problem. We must fight in practice. Kubernetes series: Introduction to Kubernetes Kubernetes environment construction Introduction to kubernetes kubectl Kubernetes pod Introduction (-) Introduction to kubernetes pod (II) - ...

Posted by crob611 on Wed, 22 Sep 2021 00:56:20 +0200

kubernetes cluster setup 01 environment preparation

Environmental Science: Ubuntu 20.04.2 LTS \n \l Kubedm is recommended for cluster construction in production environment, The starting point of kubedm tool is very simple, which is to deploy a Kubernetes cluster available for production as easily as possible. In fact, it is really simple. You only need two commands: # Create a Master n ...

Posted by essexboy on Sun, 19 Sep 2021 14:17:56 +0200