Skip to content

Instantly share code, notes, and snippets.

View aboch's full-sized avatar

Alessandro Boch aboch

View GitHub Profile
time="2017-04-17T14:20:32.456987000Z" level=debug msg="Listener created for HTTP on unix (/tmp/docker-integration/daf833d2ac427.sock)"
time="2017-04-17T14:20:32.458654000Z" level=debug msg="Using default logging driver json-file"
time="2017-04-17T14:20:32.458692000Z" level=debug msg="Golang's threads limit set to 57960"
time="2017-04-17T14:20:32.459176000Z" level=debug msg="[graphdriver] trying provided driver: vfs"
time="2017-04-17T14:20:32.459321000Z" level=debug msg="Using graph driver vfs"
time="2017-04-17T14:20:32.459525000Z" level=debug msg="Max Concurrent Downloads: 3"
time="2017-04-17T14:20:32.459541000Z" level=debug msg="Max Concurrent Uploads: 5"
time="2017-04-17T14:20:32.481631000Z" level=info msg="Graph migration to content-addressability took 0.00 seconds"
time="2017-04-17T14:20:32.481945000Z" level=warning msg="Your kernel does not support swap memory limit"
time="2017-04-17T14:20:32.482064000Z" level=warning msg="Your kernel does not support cgroup rt period"
@aboch
aboch / daemon.log
Created April 6, 2017 18:41
daemon logs for CI failure
time="2017-04-06T00:22:58.525689000Z" level=debug msg="Listener created for HTTP on unix (/tmp/docker-integration/dfe6bdb86d023.sock)"
time="2017-04-06T00:22:58.526894000Z" level=debug msg="Using default logging driver json-file"
time="2017-04-06T00:22:58.526926000Z" level=debug msg="Golang's threads limit set to 57960"
time="2017-04-06T00:22:58.527372000Z" level=debug msg="[graphdriver] trying provided driver: vfs"
time="2017-04-06T00:22:58.527513000Z" level=debug msg="Using graph driver vfs"
time="2017-04-06T00:22:58.527644000Z" level=debug msg="Max Concurrent Downloads: 3"
time="2017-04-06T00:22:58.527658000Z" level=debug msg="Max Concurrent Uploads: 5"
time="2017-04-06T00:22:58.535560000Z" level=info msg="Graph migration to content-addressability took 0.00 seconds"
time="2017-04-06T00:22:58.535778000Z" level=warning msg="Your kernel does not support swap memory limit"
time="2017-04-06T00:22:58.535835000Z" level=warning msg="Your kernel does not support cgroup rt period"

Keybase proof

I hereby claim:

  • I am aboch on github.
  • I am aboch (https://keybase.io/aboch) on keybase.
  • I have a public key whose fingerprint is 4A9F F401 60B0 F495 3AD8 FC9E FAA5 A1B1 6E0F 235F

To claim this, I am signing this object:

diff --git a/controller.go b/controller.go
index 83f30e7..3cc2ba7 100644
--- a/controller.go
+++ b/controller.go
@@ -410,7 +410,7 @@ func (c *controller) NewSandbox(containerID string, options ...SandboxOption) (S
containerID: containerID,
endpoints: epHeap{},
epPriority: map[string]int{},
- config: containerConfig{},
+ config: sandboxConfig{},
@aboch
aboch / gist:a0e811367f9269a8e81f
Created June 15, 2015 07:54
lookupContainerID changes
diff --git a/client/service.go b/client/service.go
index e2285d7..cd085a0 100644
--- a/client/service.go
+++ b/client/service.go
@@ -8,6 +8,7 @@ import (
"strings"
"text/tabwriter"
+ "github.com/docker/docker/api/types"
flag "github.com/docker/docker/pkg/mflag"