This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package main | |
import ( | |
"context" | |
"fmt" | |
"os" | |
_ "github.com/moby/buildkit/client/connhelper/dockercontainer" | |
"github.com/moby/buildkit/client" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
module github.com/aaronlehmann/bkcacherepro | |
go 1.16 | |
require ( | |
github.com/moby/buildkit v0.9.0 | |
golang.org/x/sync v0.0.0-20210220032951-036812b2e83c | |
) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package main | |
import ( | |
"context" | |
"fmt" | |
"os" | |
"path/filepath" | |
_ "github.com/moby/buildkit/client/connhelper/dockercontainer" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
ERRO[0109] failed to shut down cluster node: context deadline exceeded | |
goroutine 1 [running]: | |
github.com/docker/docker/pkg/signal.DumpStacks(0x0, 0x0, 0x0, 0x0, 0x0, 0x0) | |
/go/src/github.com/docker/docker/pkg/signal/trap.go:82 +0xd9 | |
github.com/docker/docker/daemon/cluster.(*Cluster).Cleanup(0xc42023c5a0) | |
/go/src/github.com/docker/docker/daemon/cluster/cluster.go:380 +0x1c0 | |
main.(*DaemonCli).start(0xc420106120, 0xc420052000, 0x0, 0x0) | |
/go/src/github.com/docker/docker/cmd/dockerd/daemon.go:308 +0x1a59 | |
main.runDaemon(0xc420052000, 0xc420468120, 0x0) | |
/go/src/github.com/docker/docker/cmd/dockerd/docker.go:78 +0x76 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package main | |
var ( | |
m = map[int]string{} | |
) | |
func readMap() { | |
defer func() { | |
recover() | |
}() |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
time="2017-04-17T14:16:06.886265000Z" level=debug msg="Listener created for HTTP on unix (/tmp/docker-integration/d167bfd8fc6d9.sock)" | |
time="2017-04-17T14:16:06.889233000Z" level=debug msg="Using default logging driver json-file" | |
time="2017-04-17T14:16:06.889371000Z" level=debug msg="Golang's threads limit set to 57960" | |
time="2017-04-17T14:16:06.889960000Z" level=debug msg="[graphdriver] trying provided driver: vfs" | |
time="2017-04-17T14:16:06.890107000Z" level=debug msg="Using graph driver vfs" | |
time="2017-04-17T14:16:06.890293000Z" level=debug msg="Max Concurrent Downloads: 3" | |
time="2017-04-17T14:16:06.890308000Z" level=debug msg="Max Concurrent Uploads: 5" | |
time="2017-04-17T14:16:06.903142000Z" level=info msg="Graph migration to content-addressability took 0.00 seconds" | |
time="2017-04-17T14:16:06.903388000Z" level=warning msg="Your kernel does not support swap memory limit" | |
time="2017-04-17T14:16:06.903447000Z" level=warning msg="Your kernel does not support cgroup rt period" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package main | |
import ( | |
"compress/gzip" | |
"io" | |
"os" | |
"github.com/docker/docker/pkg/tarsum" | |
) |