mirror of https://github.com/docker/cli.git
Merge pull request #32128 from vdemeester/30836-set-alias-to-servicename
Set the alias to the service name instead of the network name
This commit is contained in:
commit
e2e4b0f9a8
|
@ -54,7 +54,7 @@ func deployBundle(ctx context.Context, dockerCli *command.DockerCli, opts deploy
|
||||||
for _, networkName := range service.Networks {
|
for _, networkName := range service.Networks {
|
||||||
nets = append(nets, swarm.NetworkAttachmentConfig{
|
nets = append(nets, swarm.NetworkAttachmentConfig{
|
||||||
Target: namespace.Scope(networkName),
|
Target: namespace.Scope(networkName),
|
||||||
Aliases: []string{networkName},
|
Aliases: []string{internalName},
|
||||||
})
|
})
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue