MCPcopy Index your code
hub / github.com/nginx-proxy/docker-gen / String

Method String

internal/context/context.go:114–123  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

112}
113
114func (i *DockerImage) String() string {
115 ret := i.Repository
116 if i.Registry != "" {
117 ret = i.Registry + "/" + i.Repository
118 }
119 if i.Tag != "" {
120 ret = ret + ":" + i.Tag
121 }
122 return ret
123}
124
125type SwarmNode struct {
126 ID string

Calls

no outgoing calls