1
0
Fork 0
mirror of https://github.com/moby/moby.git synced 2022-11-09 12:21:53 -05:00

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:
Vincent Demeester 2017-03-28 09:46:05 +02:00 committed by GitHub
commit 4155343f44

View file

@ -54,7 +54,7 @@ func deployBundle(ctx context.Context, dockerCli *command.DockerCli, opts deploy
for _, networkName := range service.Networks {
nets = append(nets, swarm.NetworkAttachmentConfig{
Target: namespace.Scope(networkName),
Aliases: []string{networkName},
Aliases: []string{internalName},
})
}