Ripped off from adrianshort.org
$ git remote -v
origin https://github.com/hakimel/reveal.js.git (fetch)
origin https://github.com/hakimel/reveal.js.git (push)
| FROM ubuntu | |
| RUN dpkg-divert --local --rename --add /sbin/initctl | |
| RUN ln -s /bin/true /sbin/initctl | |
| RUN echo "deb http://archive.ubuntu.com/ubuntu precise main universe" > /etc/apt/sources.list | |
| RUN apt-get update | |
| RUN apt-get upgrade -y | |
| RUN apt-get -y install mysql-client mysql-server |
Ripped off from adrianshort.org
$ git remote -v
origin https://github.com/hakimel/reveal.js.git (fetch)
origin https://github.com/hakimel/reveal.js.git (push)
cd /etc/init vim docker.conf
replace /usr/bin/docker -d with this /usr/bin/docker -H 0.0.0.0:5555 -d so that we can connect through http api.
alias docker="docker -H 0.0.0.0:5555"
cd /var/lib/docker/containers
in the above locations you can find all the containers which are all executed
| xset -dpms | |
| xset s noblank | |
| xset s off |
Package Control Menu: ctrl+shift+P
| public abstract class JdbiIntegrationTest { | |
| private DBI dbi; | |
| private Handle handle; | |
| private Liquibase liquibase; | |
| protected abstract DatabaseConfiguration getDatabaseConfiguration(); |