mirror of
https://github.com/moby/moby.git
synced 2022-11-09 12:21:53 -05:00
929f2c2f40
Addresses #14756 Signed-off-by: Srini Brahmaroutu <srbrahma@us.ibm.com>
17 lines
468 B
Go
17 lines
468 B
Go
// +build experimental
|
|
|
|
package client
|
|
|
|
import (
|
|
"os"
|
|
|
|
nwclient "github.com/docker/libnetwork/client"
|
|
)
|
|
|
|
// CmdService is used to manage network services.
|
|
// service command is user to publish, attach and list a service from a container.
|
|
func (cli *DockerCli) CmdService(args ...string) error {
|
|
nCli := nwclient.NewNetworkCli(cli.out, cli.err, nwclient.CallFunc(cli.callWrapper))
|
|
args = append([]string{"service"}, args...)
|
|
return nCli.Cmd(os.Args[0], args...)
|
|
}
|