Skip to content
This repository was archived by the owner on Jul 18, 2025. It is now read-only.
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 4 additions & 3 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,7 +1,8 @@
FROM golang:1.5.1
FROM golang:1.6

# Copy latest docker client(s)
COPY ./docker/docker-1.9.1 /bin/docker-1.9.1
# Copy latest docker client inside the container
COPY ./docker/docker-1.10.2 /bin/docker-1.10.2
# and make it executable
RUN chmod +x /bin/docker-*

# Copy Go code and install applications
Expand Down
Binary file renamed docker/docker-1.9.1 → docker/docker-1.10.2
Binary file not shown.
1 change: 0 additions & 1 deletion go/src/github.com/Sirupsen/logrus/.gitignore

This file was deleted.

7 changes: 0 additions & 7 deletions go/src/github.com/Sirupsen/logrus/.travis.yml

This file was deleted.

68 changes: 0 additions & 68 deletions go/src/github.com/Sirupsen/logrus/hooks/bugsnag/bugsnag.go

This file was deleted.

64 changes: 0 additions & 64 deletions go/src/github.com/Sirupsen/logrus/hooks/bugsnag/bugsnag_test.go

This file was deleted.

28 changes: 0 additions & 28 deletions go/src/github.com/Sirupsen/logrus/hooks/papertrail/README.md

This file was deleted.

55 changes: 0 additions & 55 deletions go/src/github.com/Sirupsen/logrus/hooks/papertrail/papertrail.go

This file was deleted.

This file was deleted.

22 changes: 0 additions & 22 deletions go/src/github.com/samalba/dockerclient/.gitignore

This file was deleted.

5 changes: 3 additions & 2 deletions go/src/goproxy/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,7 @@ import (
// instance of DockerClient allowing for making calls to the docker daemon
// remote API
var dockerClient *dockerclient.DockerClient

// version of the docker daemon which is exposing the remote API
var dockerDaemonVersion string

Expand All @@ -35,7 +36,7 @@ type CPUStats struct {
SystemUsage uint64
}

// previousCPUStats is a map containing the previous CPU stats we got from the
// previousCPUStats is a map containing the previous CPU stats we got from the
// docker daemon through the docker remote API
var previousCPUStats map[string]*CPUStats = make(map[string]*CPUStats)

Expand Down Expand Up @@ -91,7 +92,7 @@ func main() {
func eventCallback(event *dockerclient.Event, ec chan error, args ...interface{}) {
logrus.Debugln("--\n%+v", *event)

id := event.Id
id := event.ID

switch event.Status {
case "create":
Expand Down
9 changes: 9 additions & 0 deletions go/src/goproxy/vendor/github.com/Sirupsen/logrus/.travis.yml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading