Skip to content

Latest commit

 

History

History
18 lines (12 loc) · 639 Bytes

README.md

File metadata and controls

18 lines (12 loc) · 639 Bytes

gdock

gdock is a gRPC wrapped service which serves functionalities of go-dockerclient. gdock does not include all functionalities of the given library, it means that any function which might be required could be added.

How to run

$ docker build -t gdock .
$ docker run -d --net=host -v /var/run/docker.sock:/var/run/docker.sock gdock 

Docker socket of the host should be mounted in order to use this gRPC service, since the service is about managing docker containers

Example Client Calls

There are few examples under ./grpc/client/main.go.