Sentry 9.1.1 process record of onepremium of docker

sentry installation:https://github.com/getsentry/onpremiseUse the installation steps of this document correctly to install version 9.1.1-onbuild, which requires self modifying the Dockerfile.   Note: the command to build the database will not be executed all at once, and needs to be run multiple times: docker-compose run --rm web upgrade   ...

Added by mkarabulut on Mon, 04 Nov 2019 23:11:22 +0200

Building microservice CICD system based on Kubernetes/Jenkins/Harbor/Sonarqube

**Project description** 14 JAVA eureka microservices 5 Node projects A Node project VUE generates a static page as the front end pgsql redis rabbitmq emqx Project mind map **Build process:** Jenkins (pull gitlab code -- > Maven package java project / npm package node project / gradle package Android -- > check the quality of sonarqub ...

Added by loudrake on Sun, 03 Nov 2019 09:00:51 +0200

Spring Boot RabbitMQ - priority queue

Docker With RabbitMQ Official Docker image warehouse address https://hub.docker.com/_/rabb... Running RabbitMQ locally docker run -d --name rabbitmq -p 5672:5672 -p 15672:15672 rabbitmq:3-management Access the visualization panel Address: http://127.0.0.1:15672/ Default account: guest Default password: guest Spring Boot With RabbitMQ Spring ...

Added by kovudalion on Sat, 02 Nov 2019 06:20:12 +0200

Deploying ELK log analysis system based on Docker container

Deploy elk log analysis system to consume more computer hardware. If you use virtual machine for test deployment, it is recommended to allocate more hardware resources. Otherwise, when elk container is running, it will not work normally. I will allocate 5G of memory to the docker host, four CPU s. I. environmental preparation I use a docker ho ...

Added by Jack Sparrow on Sat, 02 Nov 2019 01:55:08 +0200

Exploit Vulnhub replication vulnerability - GhostScript sandbox bypass (command execution) vulnerability (CVE-2019-6116)

GhostScript sandbox bypass (command execution) vulnerability (CVE-2019-6116) Official reproduction of Vulnhub Loophole principle Replication vulnerability Boot environment Loophole reappearance POC Upload POC file Test success Official reproduction of Vulnhub https://vulhub.org/#/env ...

Added by clodagh2000 on Fri, 01 Nov 2019 11:50:38 +0200

Docker image batch import

Effect It is mainly used for batch image import. 1. Support parameter import Example: sh import.sh "pause_3.1.tar etcd_3.3.10.tar" Note: multiple tar files are separated by spaces; 2. Support script definition to import image name Example: vi import.sh STATE="ImgName1 ImgName2 ImgName3 ...." sh import.s 3. Support to import image fro ...

Added by Kaizard on Thu, 31 Oct 2019 16:55:54 +0200

Common Docker container operation commands

!!!!! Container can only be created with image!!!!! , write it down, take the test!Download a centos image before you talk about the container operation command (this command is available in the previous "common Docker image operation command". Students who don't know can go to see it) //First check centos. [root@iz Two ze0lvzs71710m0 ...

Added by LTJason on Fri, 25 Oct 2019 06:33:01 +0300

How to develop Java 8 Spring Boot application in Docker?

In this article, I'll show you how to use Java 8 to develop and run simple Spring Web applications without having to install Java 8 on your local machine. Python developers use virtual environments to create and manage separate environments for different projects. Each environment uses different versions of Python to execute, store and parse Py ...

Added by Pellefant on Thu, 24 Oct 2019 12:10:40 +0300

mysql practice 1: SQL Foundation

mysql introduction and installation mysql introduction mysql is a famous open source relational database. It was first opened by AB company, and later it came to Sun company. After Sun was acquired by Oracle, mysql was owned by Oracle. Since then, mysql has been commercialized, and the database named mariadb has been open-source as a branch of ...

Added by blear on Tue, 22 Oct 2019 01:00:16 +0300

Network management of Docker (configuration of communication between containers)

Blog Outline: I. Bridge mode (communication between containers on the same Docker server) 2. Deploy the consumer service to realize cross host communication of Docker container Preface: When you start using docker on a large scale, you will find that you need to know a lot about the network. Docker, as the most popular lightweight containe ...

Added by xenoalien on Sat, 19 Oct 2019 00:12:16 +0300