alpine version 3.17.4 cloud-init version 22.4
Download alpine-virt-3.17.4-x86_64.iso Uploda to PVE Create a VM
This is a quick-and-dirty guide to setting up a Raspberry Pi as a "router on a stick" to PrivateInternetAccess VPN.
Install Raspbian Jessie (2016-05-27-raspbian-jessie.img
) to your Pi's sdcard.
Use the Raspberry Pi Configuration tool or sudo raspi-config
to:
/* install libzmq-dev: | |
* | |
* wget http://download.zeromq.org/zeromq-4.1.0-rc1.tar.gz | |
* tar pxvf zeromq-4.1.0-rc1.tar.gz | |
* cd zeromq-4.1.0 | |
* ./autogen.sh | |
* ./configure | |
* make | |
* sudo make install | |
* |
This gist will drive you through creating a Docker 1.12 Swarm cluster (with Swarm mode) on AWS infrastructure.
You need a few things already prepared in order to get started. You need at least Docker 1.12 set up. I was using the stable version of Docker for mac for preparing this guide.
$ docker --version
Docker version 1.12.0, build 8eab29e
You also need Docker machine installed.
#!/usr/bin/python | |
import json | |
import bottle | |
from bottle import static_file, route, run, request, abort, response | |
import simplejson | |
import pymongo | |
from pymongo import Connection | |
import datetime | |