Skip to content

wrfly/mock-dockerd

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

1 Commit
 
 
 
 
 
 

Repository files navigation

Mock Dockerd

A mock tool for local docker testing.

package main

import (
	"context"
	"fmt"

	"github.com/wrfly/mock-dockerd"
)

func main() {

	c := mockdockerd.NewClient()
	resp, err := c.Ping(context.Background())
	if err != nil {
		panic(err)
	}
	fmt.Println(resp)
}

Releases

No releases published

Packages

No packages published

Languages