Skip to content

Instantly share code, notes, and snippets.

@mikejholly
mikejholly / Common Grammer
Created December 31, 2011 18:48
TextMate whitespace include
{ scopeName = 'source';
patterns = (
{ name = 'source.invalid.trailing-whitespace';
match = '(\s*$)?';
captures = { 1 = { name = 'invalid.trailing-whitespace'; }; };
},
);
}
Newark - Travel Time Estimates
Distance from Caffe Gelato to Peace A Pizza
274m (1m)
Distance from Caffe Gelato to Mario's Pizza
4093m (7m)
Distance from Caffe Gelato to Del Pez
160m (1m)
@mikejholly
mikejholly / longshoreman.md
Last active August 29, 2015 14:02
Longshoreman

Longshoreman

Longshoreman automates application deployment using Docker. Create a Docker repository (or use a service), configure the cluster using AWS or Digital Ocean (or whatever you like) and deploy applications using a Heroku-like CLI tool. We're currently using it in production at Wayfinder.

Why?

We created Longshoreman because we fell in love with Docker but were frustrated with the lack of production-ready deployment options that were available at the time. We looked closely at Deis, Flynn, Dokku and others, but they either did not meet our requirements or were explicitly marked as non ready for production. We were extremely impressed by Deis in particular and it's use of bleeding edge technologies like CoreOS, etcd and systemd. The biggest complaint we have about Deis is it's inability to relaunch applications using the Docker registry (at least when we last researched it).

How?