= Plugins used in book
== Inputs
lumberjack file stdin syslog redis
= Plugins used in book
== Inputs
lumberjack file stdin syslog redis
docker run -privileged -lxc-conf=lxc.aa_profile=unconfined -v /var/lib/docker -t -i ubuntu /bin/bash | |
2013/09/09 19:07:37 POST /v1.4/containers/create | |
Unable to find image 'ubuntu' (tag: latest) locally | |
2013/09/09 19:07:37 POST /v1.4/images/create?fromImage=ubuntu&tag= | |
Pulling repository ubuntu | |
8dbd9e392a96: Download complete | |
b750fe79269d: Download complete | |
27cf78414709: Download complete | |
2013/09/09 19:07:55 POST /v1.4/containers/create | |
2013/09/09 19:07:55 POST /v1.4/containers/0c13ad4d67e6/start |
{ | |
"server": { | |
"accessLog": "/var/log/hipache_access.log", | |
"port": 80, | |
"workers": 5, | |
"maxSockets": 100, | |
"deadBackendTTL": 30, | |
"address": ["10.202.30.31"], | |
"address6": ["fe80::1031:3bff:fe12:1dd1/64"] | |
}, |
http://mccradysrestaurant.com/ | |
http://www.huskrestaurant.com/home/ | |
http://twoboroughslarder.com/ | |
http://xiaobaobiscuit.com/ | |
http://eattheordinary.com/ | |
http://magnolias-blossom-cypress.com/ | |
http://www.thegrocerycharleston.com/ | |
http://butcherandbee.com/ | |
http://hallschophouse.com/ | |
http://msroses.com/ |
You can download the binary for the 0.7.0 RC5 release here. This is a static binary with all dependencies included.
This RC should not be used over the top of an existing Docker installs! This RC does not include the ability to migrate existing installations to the new graph drivers, a feature that will be included in the final release.
You will still need to ensure that tar
and lxc
are installed on your system before running Docker.
root@docker:~/saltmaster# docker run -t -i salt-master salt-master -d -l debug | |
[DEBUG ] Reading configuration from /etc/salt/master | |
[DEBUG ] loading log_handlers in ['/var/cache/salt/master/extmods/log_handlers', '/usr/lib/pymodules/python2.7/salt/log/handlers'] | |
[DEBUG ] Skipping /var/cache/salt/master/extmods/log_handlers, it is not a directory | |
[DEBUG ] None of the required configuration sections, 'logstash_udp_handler' and 'logstash_zmq_handler', were found the in the configuration. Not loading the Logstash logging handlers module. | |
[DEBUG ] Configuration file path: /etc/salt/master |
#!/bin/sh | |
# | |
GH_USER=$(git config --get github.user) | |
SOB=$(git var GIT_AUTHOR_IDENT | sed -n "s/^\(.*>\).*$/Docker-DCO-1.0-Signed-off-by: \1 $GH_USER/p") | |
grep -qs "^$SOB" "$1" || echo "\n$SOB" >> "$1" |
boot2docker.io 600 IN A 192.30.252.153 | |
boot2docker.io 600 IN A 192.30.252.154 | |
www.boot2docker.io 600 IN CNAME boot2docker.github.io. |
require 'yaml' | |
require 'pp' | |
def run(command) | |
puts " + #{command}" if ENV['verbose'] | |
if ENV['verbose'] | |
puts " - #{system command}" | |
else | |
system command | |
end |