Skip to content

Instantly share code, notes, and snippets.

View wshaddix's full-sized avatar

Wes Shaddix wshaddix

View GitHub Profile
RESOURCE_GROUP="dev-docker-swarm-us-east"
VNET_NAME="vnet-docker-swarm"
SUBNET_NAME="subnet-docker-swarm"
NSG_NAME="nsg-docker-swarm"
LOAD_BALANCER_NAME="load-balancer-swarm-cluster"
OS_IMAGE="Canonical:UbuntuServer:17.04:17.04.201711210"
VM_SIZE="Standard_B2S"
ADMIN_USERNAME="wshaddix"
AVAILABILITY_SET_NAME="availability-set-swarm-nodes"
sudo apt-get update
sudo apt-get --assume-yes install apt-transport-https ca-certificates curl software-properties-common
curl -fsSL https://download.docker.com/linux/ubuntu/gpg | sudo apt-key add -
sudo add-apt-repository "deb [arch=amd64] https://download.docker.com/linux/ubuntu $(lsb_release -cs) stable"
sudo apt-get update
sudo apt-get --assume-yes install docker-ce
sudo docker run --rm hello-world
sudo usermod -aG docker $USER
sudo systemctl enable docker
sudo apt-mark hold docker-ce
@wshaddix
wshaddix / gist:8797934
Created February 4, 2014 03:57
Gets the week number for a given date
main () {
// get today's date
var now = new DateTime.now();
// set it to feb 10th for testing
//now = now.add(new Duration(days:7));
int today = now.weekday;