Mario Toffia
Mario Toffia
This is the command driver infrastructure with the docker binary (shell) implementation. This will allow for plugging a driver such as REST or other to communicate with the docker daemon.
As this Issue #160 points out, the new docker -H flag can directly address a ssh:// scheme to connect to a remote daemon without setting up a remote docker-machine. Hence,...
This is split out from Issue #108 since this is much more heavy lifting task. Almost all _docker-compose_ models are created. It needs to have a builder that may allow...
Today, FluentDocker needs to have the docker binaries somewhere in the path or explicitly pointed out. A driver model that implements docker binaries and then later on allows for _HTTP_...
This PR supports repositores with multiple modules. It will eliminate the need to specify a module. Therefore, all documentation parsing needs to include atleast **one** `go.mod`. It also adds support...
When parsing gopackage.go the go/types - types.Config will segfault! ```golang conf := types.Config{Importer: importer.For("source", nil)} info := &types.Info{ Types: make(map[ast.Expr]types.TypeAndValue), Defs: make(map[*ast.Ident]types.Object), Uses: make(map[*ast.Ident]types.Object), } if _, err := conf.Check(file.Name.Name,...
Initial thought is - around the figures of... | Type | Example | |--------------|:---------------------------------------------------------------------:| |`type` |@mypackagename.MyType | |`type` |@github.com/mariotoffia/goasciidoc/mypackagename.MyType | |`method` |@MyMethod | |`method` |@mypackagename.MyMethod | |`method` |@github.com/mariotoffia/goasciidoc/mypackagename.MyMethod | |`method`...
Allow for rendering a sample JSON document based on go structs. In addition interpret json tag. ```golang type DsBuildingMeta struct { TimeZone DsMetaTimeStamp `json:"tz,omitempty"` Sensors map[string]DsMetaTimeStamp `json:"sensors,omitempty"` } ```