We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3bd24ec commit 5078050Copy full SHA for 5078050
framework/components/fake/container.go
@@ -45,7 +45,7 @@ func NewDockerFakeDataProvider(in *Input) (*Output, error) {
45
}
46
out := &Output{
47
BaseURLHost: fmt.Sprintf("http://localhost:%d", in.Port),
48
- BaseURLDocker: fmt.Sprintf("%s:%d", HostDockerInternal(), in.Port),
+ BaseURLDocker: fmt.Sprintf("http://%s:%d", containerName, in.Port),
49
50
in.Out = out
51
return out, nil
0 commit comments