docker and git implementation push-to-deploy

background Recent research into docker-based continuous delivery processes has allowed docker to build host-independent software environments that can push-to-deploy docker containers while pushing code to remote repositories through the git hooks mechanism (triggering a specific script in the $GIT-DIR/hooks directory when a particular event oc ...

Posted by phpBuddy on Thu, 20 Jun 2019 19:38:44 +0200

Deploying OpenStreetMap Server with Docker

Last month, my teacher asked me to build Docker's OSM server. At that time, I stepped on the pit while recording. Finally, I got the deployment, so I blogged. I. Install and configure Docker This section describes the installation steps of docker in centOS 7 environment. The content is from http://www.runoob.com/docker/docker-tutorial.html Fo ...

Posted by Sassci on Wed, 19 Jun 2019 01:43:59 +0200

Introduction and basic configuration of webpack

webpack installation and command line First step initialization (I use Taobao mirror cnpm here) cnpm init Step 2 Install webpack cnpm install webpack --save-dev The third step is to install the loader that handles css cnpm instal css-loader style-loader --save-dev The fourth step is to introduce other files into hello.js, which ...

Posted by phpCCore Brad on Sat, 15 Jun 2019 23:29:00 +0200

git tag operation on submodule multi-module (and synchronization to remote branch)

Preface git's operation on multiple modules requires the following commands git submodule foreach Simply add the required operations to the back, and they will be executed module by module. For example: git submodule foreach git stash It traverses all the sub-modules and stores them. Fight tag Because git submodule foreach only operates on s ...

Posted by zingbats on Tue, 04 Jun 2019 23:15:03 +0200

Auto-packaging Android with Jenkins

App packaging has always been done by developers during the submission of tests and final deployment. Because of the large size of the project and the slowness of Android packaging itself, each packaging is time consuming.And according to the rigorous R&D process, developers should only be responsible for submitting code. Packaging during ...

Posted by gwizz on Sat, 01 Jun 2019 19:43:21 +0200

Android Audio (10) - Implementation of Multi-App Simultaneous Recording

1. Writing Recording Program with c++. 1. PCM audio data is the original audio data, which can not be played by the player. It needs to be added a header to indicate how many channels the sound has, how many sampling rates are, and so on. takePCM audio data is converted to WAV format so that other players can play it. 2. Three parameters shou ...

Posted by mania on Wed, 29 May 2019 20:12:32 +0200

Installation of git under centos and automatic code synchronization

Reference articles CentOS Installation Git for Multi-Person Synchronized Development GIT Server Construction and Key Connection in centos Sketch 1. Installing Git Dependency and Git on Server 2. Create Git users and their groups 3. Initialization of Git Warehouse on Server 4. Install Git Client and Generate Public Key 5. Create cert ...

Posted by imranlink on Sat, 25 May 2019 20:28:30 +0200

Web Server Framework Based on Koa and Mysql

Recently, I was writing a custom interface for a project. For the first time, I used node.js to implement it. I searched books and materials for several days. I planned to use express + mongodb to implement it. Later, I found that Koa, good boy, mysql is the final choice of the database. Old fashion, I built a framework based on Koa + Mysql: Ko ...

Posted by jac38 on Fri, 24 May 2019 22:31:54 +0200

Talk about UVW Code (1)

The blog Garden is a very good place to learn knowledge. I believe there are many people like me who have been in the blog Garden for 3 years. They do not know how many codes they have copied or how many blogs they have read, but they have never written a single blog.It's a crime. This time I'm going to write a few articles about the reading an ...

Posted by monotoko on Fri, 24 May 2019 18:53:44 +0200

Android Development Note: Compiling ijkplayer to support more video formats

Preface Prerequisite Compilation preparation Start compilation Using the compiled ijkplayer so Library Portal Thank Preface ijkplayer is good. Thank you for the big man in Station B. ijkplayer is developed based on FFmpeg and adapts to Android/iOS platform. FFmpeg is a god-like project in the development world. Full-format audio and ...

Posted by meomike2000 on Thu, 23 May 2019 02:55:43 +0200