Docker Native Arrangement Tool - compose+consul Cluster+template
Docker Native Layout Tool
1. docker-compose
concept
The Compose default management object is the project, which manages the life cycle of a set of containers in the project through subcommands.
The Compose project is implemented by Python, which calls the API provided by the Docker service to manage containers.
Configuration steps
1. Install D ...
Added by myleow on Thu, 16 Jan 2020 01:13:00 +0200
kubeflow series: model as a service, about the use of tensorflow serving
In kubeflow, TensorFlow Serving is used as the official tensorflow model interface. TensorFlow Serving is an open-source service system of GOOGLE, which is suitable for deploying machine learning model. It is flexible, high-performance and can be used in production environment. TensorFlow Serving can easily deploy new algorithms and experiments ...
Added by jehardesty on Tue, 14 Jan 2020 12:22:22 +0200
[introduction] QQ chat robot - HelloWorld
After reading this blog, you will be able to
qq message second speed 99+
Build cloud environment (or virtual machine) and deploy qq robot
Using springboot to write a simple hello world for your artificial mental retardation
inspiration source
Viagra's blog
Be based on Cool Q A plug-in for coolq-h ...
Added by Orkan on Sat, 11 Jan 2020 16:50:31 +0200
Set the Master node of Kubernetes to run the application pod
Using kubeadm to deploy highly available Kubernetes 1.17.0 After setting up three Master nodes, it is found during the deployment of Heketi that Daemonset does not start the corresponding pod. The original Master node of Kubernetes needs to be set to participate in application scheduling (by default, the Master node does not run applications). ...
Added by fiddy on Tue, 07 Jan 2020 17:14:04 +0200
Common commands for Docker container operation
This article is an introduction.
This article continues< Common commands for Docker image operation>
Software image (e.g. weChat.exe) ---- run image - > generate a container (running software, running wechat program);
operation
command
Explain
Function
docker run --name container-name -d image-name
...
Added by said_r3000 on Tue, 07 Jan 2020 03:21:38 +0200
Spring cloud + Maven + lancher2 + kubernetes (k8s) + git + Jenkins + pipeline + docker to realize automatic packaging deployment
Environmental preparation:
k8s environment managed by lancher 2.3
jenkins (you can use docker to build or install directly. If you are not familiar with k8s, it is not recommended to use helm to install jenkins. Many configurations are not convenient to change. I built it with docker, but I need to record and mount the docker command. It is r ...
Added by sitorush on Fri, 03 Jan 2020 11:35:24 +0200
Springboot + redis (stand-alone)
This time, I want to share with you that redis is used in spring boot integration. Here, the jedis client of redis is used (here, redis running by docker, please refer to docker quickly builds several common third-party services ), add dependencies as follows:
<dependency>
<groupId>redis.clients</groupId>
<artifact ...
Added by kishanprasad on Thu, 02 Jan 2020 15:07:01 +0200
Docker warehouse certification
Docker officially encapsulates the warehouse as an image. You can deploy the warehouse directly by starting the container
Experimental environment
Physical machine 172.25.41.250
I. warehouse authentication mechanism
1. certificate
[root@foundation41 docker]# docker run -d --restart=always --name registry -v ` ...
Added by norpel on Thu, 02 Jan 2020 13:38:57 +0200
Actuator + Prometheus + Grafana Build Microservice Monitoring Platform
[TOC]
Preface
about Actuator:
Partners who know about Spring Boot monitoring capabilities should know about the Spring Boot Actuator subproject, which provides powerful monitoring capabilities for applications.Starting with Spring Boot 2.x, Actuator changed the underlying layer to Micrometer, providing stronger and more flexible monitoring ...
Added by MerlinJR on Thu, 02 Jan 2020 07:04:57 +0200
Docker installation and deployment
1, Install docker
Environment: YUM source for rhel7.3
[root@18 docker]# yum install docker-engine-17.03.1.ce-1.el7.centos.x86_64.rpm -y
[root@18 docker]# yum install docker-engine-selinux-17.03.1.ce-1.el7.centos.noarch.rpm -y
[root@18 docker]# systemctl start docker.service
##View docker version
[root@18 docker]# docke ...
Added by alconebay on Wed, 01 Jan 2020 03:48:56 +0200