SonarQube in Docker environment

Mon 14 September 2015
Install Pull Docker images for PostgreSQL and SonarQube $ docker pull postgres:9.4 $ docker pull sonarqube:5.1.2 Configuration Database configuration By default, the image will use an embedded H2 database that is not suited for production. The production database is configured with these variables: SONARQUBE_JDBC_USERNAME SONARQUBE_JDBC_PASSWORD SONARQUBE_JDBC_URL $ docker ...

Virtual Disks

Sat 12 September 2015
Disk Format The disk format of a virtual machine image is the format of the underlying disk image. Virtual appliance vendors have different formats for laying out the information contained in a virtual machine disk image. You can set your image’s disk format to one of the following: raw ...

Amazon Web Services in Plain English (notes)

Sat 12 September 2015
Read original page: Amazon Web Services in Plain English Base Services EC2 (Amazon Virtual Servers): Host the bits of things you think of as a computer. It's handwavy, but EC2 instances are similar to the virtual private servers you'd get at Linode, DigitalOcean or Rackspace IAM (Users, Keys ...

Totem: continous delivery pipeline tool

Tue 08 September 2015
Totem is continous delivery pipline tool which is aimed in simplifying delivery of the code for stateless application to any environment. Under the hood, it utilizes containerization tools and technology (Docker). It was specifically designed for micro services/frameworks by utilizing practices and patterns that are used for deploying the ...

powerline-status

Mon 07 September 2015
Powerline is a statusline plugin for vim, and provides statuslines and prompts for several other applications, including zsh, bash, tmux, IPython, Awesome and Qtile. Documentation https://powerline.readthedocs.org/en/latest/ Bash prompt Add the following line to your ~/.bashrc or /etc/bash.bashrc: if [ -f `which powerline-daemon` ]; then powerline-daemon ...

Migrate blog to Pelican and GitHub Pages

Fri 24 July 2015
Installation $ git clone https://github.com/ownport/notes.git $ cd notes $ docker build -t 'ownport.github.io' . Update site Run container and re-generate HTML pages $ docker run -ti --rm --name 'notes' -v ${pwd}/engine:/data/engine ownport.github.io $ cd /data/engine/ $ make html $ exit Publishing to GitHub GitHub Pages ...