From a389ac5773b7f089f3e6f57bcc103c9b5c2a022c Mon Sep 17 00:00:00 2001 From: Victor Vieux Date: Wed, 7 Oct 2015 14:00:04 -0700 Subject: [PATCH] fix nop client Signed-off-by: Victor Vieux --- nopclient/nop.go | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/nopclient/nop.go b/nopclient/nop.go index ef64536..03dfbab 100644 --- a/nopclient/nop.go +++ b/nopclient/nop.go @@ -98,6 +98,10 @@ func (client *NopClient) PullImage(name string, auth *dockerclient.AuthConfig) e return ErrNoEngine } +func (client *NopClient) PushImage(name, tag string, auth *dockerclient.AuthConfig) error { + return ErrNoEngine +} + func (client *NopClient) LoadImage(reader io.Reader) error { return ErrNoEngine }