Skip to content

Commit 5078050

Browse files
committed
fix fake internal path
1 parent 3bd24ec commit 5078050

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

framework/components/fake/container.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ func NewDockerFakeDataProvider(in *Input) (*Output, error) {
4545
}
4646
out := &Output{
4747
BaseURLHost: fmt.Sprintf("http://localhost:%d", in.Port),
48-
BaseURLDocker: fmt.Sprintf("%s:%d", HostDockerInternal(), in.Port),
48+
BaseURLDocker: fmt.Sprintf("http://%s:%d", containerName, in.Port),
4949
}
5050
in.Out = out
5151
return out, nil

0 commit comments

Comments
 (0)