This simple setup allows your Docker image to take off

This article has been included GitHub There are also Internet factory interview questions, interview strategies, efficient learning materials and so on 1. Preface Docker is cool to use, especially when used in DevOps practice.However, when you pull a mirror at home or locally, you often encounter constipation - either slowly or intermittentl ...

Posted by oneday on Mon, 29 Jun 2020 16:19:02 -0700

This article teaches you to publish your personal development jar package to maven central repository

Author: little brother FuBlog: https://bugstack.cn -Original series special cases Precipitation, sharing, growth, so that they and others can have a harvest! 😄 Introduction to foreword (December, 19) recently, I want to make an open source sharing project based on Spring Boot, and develop a distributed task DcsSchedule middleware to enhance Sc ...

Posted by AdamSnow on Wed, 17 Jun 2020 20:05:34 -0700

"Beginner mall" - Interface - use script to simplify deployment operation (optimization)

1. Preface In the previous version, you mistakenly bound the build push docker image to the package execution action. As a result, the OSC service parent project will report an error that it cannot find the dependency during the install operation, and unacceptable problems such as "build the pus ...

Posted by abolmeer on Mon, 15 Jun 2020 21:51:39 -0700

Haven't you built and used Maven Nexus private library?

Why use private library By default, maven goes to the remote central warehouse to download the JAR package. It's quite slow to visit the foreign network. If everyone in the team downloads the JAR package once, it's undoubtedly a waste of the network. Of course, it can also add the domestic image, such as Ali's, which is relatively stable. But ...

Posted by DeadEvil on Tue, 19 May 2020 03:20:28 -0700

Create Maven private warehouse with Nexus

Go to http://www.sonatype.org/nexus/go/ Download nexus-2.14.5-02-bundle.tar.gz Create the nexus directory in the server and download the Nexus (upload it to the oss first and then download it in the form of wget) [root@iZm5e0c5bxd15k4yfdiirsZ opt]# mkdir nexus [root@iZm5e0c5bxd15k4yfdiirsZ opt]# ls apache-tomcat-8.0.30 jdk1.8.0_11 nexus r ...

Posted by rupertbj on Sat, 04 Apr 2020 09:42:49 -0700

Maven Series Part 5: details of private server

Environmental Science maven3.6.1 Development tool idea jdk1.8 Content of this article Introduction to private clothes Installing nexus private server in windows Installing nexus private server in linux Details of various warehouses in nexus private server Conf ...

Posted by gtal3x on Tue, 17 Mar 2020 00:49:09 -0700

Kubernetes cluster practice (07) deploying Elastic using the ECK Operator

Extras: Why did you insist on using k8s to realize the existing business? There is a strong impetus that the original virtual deployment of elastic cluster can no longer adapt to the expansion of business scale. It is nightmarish to set up large-scale elastic cluster on virtual machine. Therefore, we are determined to deploy in a container way ...

Posted by paragkalra on Tue, 10 Mar 2020 03:25:02 -0700

maven common operations

1, Using docker to build maven nexus private server 1: Download Image docker pull sonatype/nexus3 2: create the mount directory and grant permissions to / var / lib / docker / volumes / nexus data chmod 777 nexus-data/ 3: start container docker run -d -p 8081:8081 --name nexus -v /var/lib/docke ...

Posted by mosizlak on Fri, 14 Feb 2020 00:22:47 -0800

Zong Laoshi self taught Jsoup

Introduction to Jsoup jsoup is a Java HTML parser, which can directly parse a URL address and HTML text content. It provides a set of very labor-saving API, which can extract and operate data through DOM, CSS and jQuery like operation methods. In the field of crawler web page collection, our main role is to use HttpClient to obtain the specific ...

Posted by aceconcepts on Fri, 31 Jan 2020 08:48:06 -0800

AOP of architecture design of centralized landing architecture based on aspect oriented idea

1, Before you start: Centralized login architecture design: this login is not a login request, but a judgment of whether the current login status is available. If it is not, skip the login interface; otherwise, perform the corresponding skip logic. This business is a global business, and the global b ...

Posted by keystroke on Thu, 30 Jan 2020 22:50:33 -0800