Skip to content

Instantly share code, notes, and snippets.

@encodeering
encodeering / .travis.yml
Created December 31, 2015 14:50
Travis configuration to be capable of running the docker command inside a docker container by a host-share; you need to bind libapparmor due: /usr/bin/docker: error while loading shared libraries: libapparmor.so.1: cannot open shared object file: No such file or directory
sudo: required
# any language should do it
language: bash
services:
- docker
# libapparmor1 should be already installed due a running service, but just in case
install:
@encodeering
encodeering / Vagrantfile
Created November 1, 2015 13:16
How to setup a dockerized vm using Vagrant
# -*- mode: ruby -*-
# vi: set ft=ruby :
#
# Copyright 2015 Michael Clausen
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0