Skip to content

Instantly share code, notes, and snippets.

View boehlke's full-sized avatar

André Böhlke boehlke

View GitHub Profile
// ==UserScript==
// @name Show PersonData QR Code
// @namespace http://tampermonkey.net/
// @version 0.2
// @description try to take over the world!
// @author You
// @match https://web.timify.com/*
// @require https://cdnjs.cloudflare.com/ajax/libs/jquery/2.1.3/jquery.min.js
// @require https://cdn.rawgit.com/davidshimjs/qrcodejs/gh-pages/qrcode.min.js
// @grant none
@boehlke
boehlke / Dockerfile
Created September 3, 2015 15:53
jenkins with docker (hack, not portable)
FROM jenkins
USER root
RUN groupadd -g 999 hostdocker && usermod -G hostdocker -a jenkins
RUN wget https://get.docker.io/builds/Linux/x86_64/docker-1.7.1 -O /usr/local/bin/docker && chmod +x /usr/local/bin/docker
USER jenkins
ENTRYPOINT ["/bin/tini", "--", "/usr/local/bin/jenkins.sh"]