Permalink
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Browse files
Merge pull request #133 from mrjana/powerstrip
* Added powerstrip support * Fixed issues related to interface namespace changes from within socketplane container
- Loading branch information
Showing
with
1,745 additions
and 31 deletions.
- +5 −1 Godeps/Godeps.json
- +22 −0 Godeps/_workspace/src/github.com/samalba/dockerclient/.gitignore
- +202 −0 Godeps/_workspace/src/github.com/samalba/dockerclient/LICENSE
- +63 −0 Godeps/_workspace/src/github.com/samalba/dockerclient/README.md
- +21 −0 Godeps/_workspace/src/github.com/samalba/dockerclient/auth.go
- +15 −0 Godeps/_workspace/src/github.com/samalba/dockerclient/auth_test.go
- +380 −0 Godeps/_workspace/src/github.com/samalba/dockerclient/dockerclient.go
- +153 −0 Godeps/_workspace/src/github.com/samalba/dockerclient/dockerclient_test.go
- +210 −0 Godeps/_workspace/src/github.com/samalba/dockerclient/engine_mock_test.go
- +11 −0 Godeps/_workspace/src/github.com/samalba/dockerclient/example_responses.go
- +32 −0 Godeps/_workspace/src/github.com/samalba/dockerclient/examples/events.go
- +29 −0 Godeps/_workspace/src/github.com/samalba/dockerclient/interface.go
- +109 −0 Godeps/_workspace/src/github.com/samalba/dockerclient/mockclient/mock.go
- +32 −0 Godeps/_workspace/src/github.com/samalba/dockerclient/mockclient/mock_test.go
- +168 −0 Godeps/_workspace/src/github.com/samalba/dockerclient/types.go
- +33 −0 Godeps/_workspace/src/github.com/samalba/dockerclient/utils.go
- +4 −1 Vagrantfile
- +8 −0 adapters.yml
- +4 −0 daemon/api.go
- +36 −2 daemon/bridge.go
- +5 −0 daemon/daemon.go
- +137 −0 daemon/powerstrip.go
- +13 −0 powerstrip.md
- +4 −0 scripts/install.sh
- +49 −27 scripts/socketplane.sh
Oops, something went wrong.