2014-04-07 14:34:07 -04:00
|
|
|
package main
|
|
|
|
|
|
|
|
import (
|
2016-08-04 12:17:37 -04:00
|
|
|
"encoding/json"
|
2015-01-21 17:34:08 -05:00
|
|
|
"fmt"
|
|
|
|
"regexp"
|
2017-08-21 18:31:51 -04:00
|
|
|
"sort"
|
2014-05-21 18:07:40 -04:00
|
|
|
"strings"
|
2019-09-09 17:06:12 -04:00
|
|
|
"testing"
|
2015-09-18 13:41:12 -04:00
|
|
|
|
2015-12-01 17:01:51 -05:00
|
|
|
"github.com/docker/docker/runconfig"
|
2019-04-04 09:23:19 -04:00
|
|
|
"gotest.tools/assert"
|
rm-gocheck: Matches -> cmp.Regexp
sed -E -i '0,/^import "github\.com/ s/^(import "github\.com.*)/\1\nimport "gotest.tools\/assert\/cmp")/' \
-- "integration-cli/docker_cli_build_test.go" "integration-cli/docker_cli_history_test.go" "integration-cli/docker_cli_links_test.go" \
&& \
sed -E -i '0,/^\t+"github\.com/ s/(^\t+"github\.com.*)/\1\n"gotest.tools\/assert\/cmp"/' \
-- "integration-cli/docker_cli_build_test.go" "integration-cli/docker_cli_history_test.go" "integration-cli/docker_cli_links_test.go" \
&& \
sed -E -i 's#\bassert\.Assert\(c, (.*), checker\.Matches, (.*)\)$#assert.Assert(c, eg_matches(is.Regexp, \1, \2))#g' \
-- "integration-cli/docker_cli_images_test.go" "integration-cli/docker_api_containers_test.go" \
&& \
sed -E -i 's#\bassert\.Assert\(c, (.*), checker\.Matches, (.*)\)$#assert.Assert(c, eg_matches(cmp.Regexp, \1, \2))#g' \
-- "integration-cli/docker_cli_build_test.go" "integration-cli/docker_cli_history_test.go" "integration-cli/docker_cli_links_test.go" \
&& \
go get -d golang.org/x/tools/cmd/eg && dir=$(go env GOPATH)/src/golang.org/x/tools && git -C "$dir" fetch https://github.com/tiborvass/tools handle-variadic && git -C "$dir" checkout 61a94b82347c29b3289e83190aa3dda74d47abbb && go install golang.org/x/tools/cmd/eg \
&& \
/bin/echo -e 'package main\nvar eg_matches func(func(cmp.RegexOrPattern, string) cmp.Comparison, interface{}, string, ...interface{}) bool' > ./integration-cli/eg_helper.go \
&& \
goimports -w ./integration-cli \
&& \
eg -w -t template.matches.go -- ./integration-cli \
&& \
rm -f ./integration-cli/eg_helper.go \
&& \
go run rm-gocheck.go redress '\bassert\.Assert\b.*(\(|,)\s*$' \
"integration-cli/docker_api_containers_test.go" "integration-cli/docker_cli_build_test.go" "integration-cli/docker_cli_history_test.go" "integration-cli/docker_cli_images_test.go" "integration-cli/docker_cli_links_test.go"
Signed-off-by: Tibor Vass <tibor@docker.com>
2019-09-09 17:07:08 -04:00
|
|
|
"gotest.tools/assert/cmp"
|
2014-04-07 14:34:07 -04:00
|
|
|
)
|
|
|
|
|
2019-09-09 17:05:55 -04:00
|
|
|
func (s *DockerSuite) TestLinksPingUnlinkedContainers(c *testing.T) {
|
2015-08-28 13:36:42 -04:00
|
|
|
testRequires(c, DaemonIsLinux)
|
2015-07-27 14:13:25 -04:00
|
|
|
_, exitCode, err := dockerCmdWithError("run", "--rm", "busybox", "sh", "-c", "ping -c 1 alias1 -W 1 && ping -c 1 alias2 -W 1")
|
2014-04-07 14:34:07 -04:00
|
|
|
|
2015-10-08 11:56:51 -04:00
|
|
|
// run ping failed with error
|
2019-09-09 17:08:22 -04:00
|
|
|
assert.Equal(c, exitCode, 1, fmt.Sprintf("error: %v", err))
|
2014-04-07 14:34:07 -04:00
|
|
|
}
|
|
|
|
|
2015-02-13 15:14:38 -05:00
|
|
|
// Test for appropriate error when calling --link with an invalid target container
|
2019-09-09 17:05:55 -04:00
|
|
|
func (s *DockerSuite) TestLinksInvalidContainerTarget(c *testing.T) {
|
2015-08-28 13:36:42 -04:00
|
|
|
testRequires(c, DaemonIsLinux)
|
2015-07-27 14:13:25 -04:00
|
|
|
out, _, err := dockerCmdWithError("run", "--link", "bogus:alias", "busybox", "true")
|
2015-02-13 15:14:38 -05:00
|
|
|
|
2015-10-08 11:56:51 -04:00
|
|
|
// an invalid container target should produce an error
|
2019-09-09 17:08:22 -04:00
|
|
|
assert.Assert(c, err != nil, fmt.Sprintf("out: %s", out))
|
2015-10-08 11:56:51 -04:00
|
|
|
// an invalid container target should produce an error
|
2018-05-04 17:15:00 -04:00
|
|
|
// note: convert the output to lowercase first as the error string
|
|
|
|
// capitalization was changed after API version 1.32
|
2019-09-09 17:08:22 -04:00
|
|
|
assert.Assert(c, strings.Contains(strings.ToLower(out), "could not get container"))
|
2015-02-13 15:14:38 -05:00
|
|
|
}
|
|
|
|
|
2019-09-09 17:05:55 -04:00
|
|
|
func (s *DockerSuite) TestLinksPingLinkedContainers(c *testing.T) {
|
2015-08-28 13:36:42 -04:00
|
|
|
testRequires(c, DaemonIsLinux)
|
2016-07-22 18:42:26 -04:00
|
|
|
// Test with the three different ways of specifying the default network on Linux
|
|
|
|
testLinkPingOnNetwork(c, "")
|
|
|
|
testLinkPingOnNetwork(c, "default")
|
|
|
|
testLinkPingOnNetwork(c, "bridge")
|
|
|
|
}
|
|
|
|
|
2019-09-09 17:05:55 -04:00
|
|
|
func testLinkPingOnNetwork(c *testing.T, network string) {
|
2016-07-22 18:42:26 -04:00
|
|
|
var postArgs []string
|
|
|
|
if network != "" {
|
|
|
|
postArgs = append(postArgs, []string{"--net", network}...)
|
|
|
|
}
|
|
|
|
postArgs = append(postArgs, []string{"busybox", "top"}...)
|
|
|
|
runArgs1 := append([]string{"run", "-d", "--name", "container1", "--hostname", "fred"}, postArgs...)
|
|
|
|
runArgs2 := append([]string{"run", "-d", "--name", "container2", "--hostname", "wilma"}, postArgs...)
|
|
|
|
|
|
|
|
// Run the two named containers
|
|
|
|
dockerCmd(c, runArgs1...)
|
|
|
|
dockerCmd(c, runArgs2...)
|
|
|
|
|
|
|
|
postArgs = []string{}
|
|
|
|
if network != "" {
|
|
|
|
postArgs = append(postArgs, []string{"--net", network}...)
|
|
|
|
}
|
|
|
|
postArgs = append(postArgs, []string{"busybox", "sh", "-c"}...)
|
2015-02-16 00:00:51 -05:00
|
|
|
|
2016-07-22 18:42:26 -04:00
|
|
|
// Format a run for a container which links to the other two
|
|
|
|
runArgs := append([]string{"run", "--rm", "--link", "container1:alias1", "--link", "container2:alias2"}, postArgs...)
|
2015-02-16 00:00:51 -05:00
|
|
|
pingCmd := "ping -c 1 %s -W 1 && ping -c 1 %s -W 1"
|
2014-08-28 01:25:57 -04:00
|
|
|
|
2015-02-16 00:00:51 -05:00
|
|
|
// test ping by alias, ping by name, and ping by hostname
|
|
|
|
// 1. Ping by alias
|
2015-04-18 12:46:47 -04:00
|
|
|
dockerCmd(c, append(runArgs, fmt.Sprintf(pingCmd, "alias1", "alias2"))...)
|
2015-02-16 00:00:51 -05:00
|
|
|
// 2. Ping by container name
|
2015-04-18 12:46:47 -04:00
|
|
|
dockerCmd(c, append(runArgs, fmt.Sprintf(pingCmd, "container1", "container2"))...)
|
2015-02-16 00:00:51 -05:00
|
|
|
// 3. Ping by hostname
|
2015-04-18 12:46:47 -04:00
|
|
|
dockerCmd(c, append(runArgs, fmt.Sprintf(pingCmd, "fred", "wilma"))...)
|
2015-02-16 00:00:51 -05:00
|
|
|
|
2016-07-22 18:42:26 -04:00
|
|
|
// Clean for next round
|
|
|
|
dockerCmd(c, "rm", "-f", "container1")
|
|
|
|
dockerCmd(c, "rm", "-f", "container2")
|
2014-04-07 14:34:07 -04:00
|
|
|
}
|
2014-05-10 13:27:24 -04:00
|
|
|
|
2019-09-09 17:05:55 -04:00
|
|
|
func (s *DockerSuite) TestLinksPingLinkedContainersAfterRename(c *testing.T) {
|
2015-08-28 13:36:42 -04:00
|
|
|
testRequires(c, DaemonIsLinux)
|
2015-04-18 12:46:47 -04:00
|
|
|
out, _ := dockerCmd(c, "run", "-d", "--name", "container1", "busybox", "top")
|
2015-04-06 09:21:18 -04:00
|
|
|
idA := strings.TrimSpace(out)
|
2015-04-18 12:46:47 -04:00
|
|
|
out, _ = dockerCmd(c, "run", "-d", "--name", "container2", "busybox", "top")
|
2015-04-06 09:21:18 -04:00
|
|
|
idB := strings.TrimSpace(out)
|
2015-04-18 12:46:47 -04:00
|
|
|
dockerCmd(c, "rename", "container1", "container_new")
|
|
|
|
dockerCmd(c, "run", "--rm", "--link", "container_new:alias1", "--link", "container2:alias2", "busybox", "sh", "-c", "ping -c 1 alias1 -W 1 && ping -c 1 alias2 -W 1")
|
|
|
|
dockerCmd(c, "kill", idA)
|
|
|
|
dockerCmd(c, "kill", idB)
|
2014-10-04 22:47:54 -04:00
|
|
|
|
|
|
|
}
|
|
|
|
|
2019-09-09 17:05:55 -04:00
|
|
|
func (s *DockerSuite) TestLinksInspectLinksStarted(c *testing.T) {
|
2015-08-28 13:36:42 -04:00
|
|
|
testRequires(c, DaemonIsLinux)
|
2015-04-18 12:46:47 -04:00
|
|
|
dockerCmd(c, "run", "-d", "--name", "container1", "busybox", "top")
|
|
|
|
dockerCmd(c, "run", "-d", "--name", "container2", "busybox", "top")
|
|
|
|
dockerCmd(c, "run", "-d", "--name", "testinspectlink", "--link", "container1:alias1", "--link", "container2:alias2", "busybox", "top")
|
2016-01-28 09:19:25 -05:00
|
|
|
links := inspectFieldJSON(c, "testinspectlink", "HostConfig.Links")
|
2014-07-08 16:27:58 -04:00
|
|
|
|
2017-08-21 18:31:51 -04:00
|
|
|
var result []string
|
2016-08-04 12:17:37 -04:00
|
|
|
err := json.Unmarshal([]byte(links), &result)
|
2019-04-04 09:23:19 -04:00
|
|
|
assert.NilError(c, err)
|
2014-07-08 16:27:58 -04:00
|
|
|
|
2017-08-21 18:31:51 -04:00
|
|
|
var expected = []string{
|
|
|
|
"/container1:/testinspectlink/alias1",
|
|
|
|
"/container2:/testinspectlink/alias2",
|
|
|
|
}
|
|
|
|
sort.Strings(result)
|
2019-04-04 09:23:19 -04:00
|
|
|
assert.DeepEqual(c, result, expected)
|
2014-06-27 04:26:02 -04:00
|
|
|
}
|
|
|
|
|
2019-09-09 17:05:55 -04:00
|
|
|
func (s *DockerSuite) TestLinksInspectLinksStopped(c *testing.T) {
|
2015-08-28 13:36:42 -04:00
|
|
|
testRequires(c, DaemonIsLinux)
|
2017-08-21 18:31:51 -04:00
|
|
|
|
2015-04-18 12:46:47 -04:00
|
|
|
dockerCmd(c, "run", "-d", "--name", "container1", "busybox", "top")
|
|
|
|
dockerCmd(c, "run", "-d", "--name", "container2", "busybox", "top")
|
|
|
|
dockerCmd(c, "run", "-d", "--name", "testinspectlink", "--link", "container1:alias1", "--link", "container2:alias2", "busybox", "true")
|
2016-01-28 09:19:25 -05:00
|
|
|
links := inspectFieldJSON(c, "testinspectlink", "HostConfig.Links")
|
2014-07-22 18:13:52 -04:00
|
|
|
|
2017-08-21 18:31:51 -04:00
|
|
|
var result []string
|
2016-08-04 12:17:37 -04:00
|
|
|
err := json.Unmarshal([]byte(links), &result)
|
2019-04-04 09:23:19 -04:00
|
|
|
assert.NilError(c, err)
|
2014-07-22 18:13:52 -04:00
|
|
|
|
2017-08-21 18:31:51 -04:00
|
|
|
var expected = []string{
|
|
|
|
"/container1:/testinspectlink/alias1",
|
|
|
|
"/container2:/testinspectlink/alias2",
|
|
|
|
}
|
|
|
|
sort.Strings(result)
|
2019-04-04 09:23:19 -04:00
|
|
|
assert.DeepEqual(c, result, expected)
|
2014-06-27 04:26:02 -04:00
|
|
|
}
|
2014-11-06 18:25:14 -05:00
|
|
|
|
2019-09-09 17:05:55 -04:00
|
|
|
func (s *DockerSuite) TestLinksNotStartedParentNotFail(c *testing.T) {
|
2015-08-28 13:36:42 -04:00
|
|
|
testRequires(c, DaemonIsLinux)
|
2015-07-20 02:44:22 -04:00
|
|
|
dockerCmd(c, "create", "--name=first", "busybox", "top")
|
|
|
|
dockerCmd(c, "create", "--name=second", "--link=first:first", "busybox", "top")
|
|
|
|
dockerCmd(c, "start", "first")
|
|
|
|
|
2014-11-06 18:25:14 -05:00
|
|
|
}
|
2014-10-24 17:39:12 -04:00
|
|
|
|
2019-09-09 17:05:55 -04:00
|
|
|
func (s *DockerSuite) TestLinksHostsFilesInject(c *testing.T) {
|
2015-08-28 13:36:42 -04:00
|
|
|
testRequires(c, DaemonIsLinux)
|
2019-07-08 12:31:34 -04:00
|
|
|
testRequires(c, testEnv.IsLocalDaemon)
|
2014-10-24 17:39:12 -04:00
|
|
|
|
2015-07-20 02:44:22 -04:00
|
|
|
out, _ := dockerCmd(c, "run", "-itd", "--name", "one", "busybox", "top")
|
2014-10-24 17:39:12 -04:00
|
|
|
idOne := strings.TrimSpace(out)
|
|
|
|
|
2015-07-20 02:44:22 -04:00
|
|
|
out, _ = dockerCmd(c, "run", "-itd", "--name", "two", "--link", "one:onetwo", "busybox", "top")
|
2014-10-24 17:39:12 -04:00
|
|
|
idTwo := strings.TrimSpace(out)
|
|
|
|
|
2019-09-09 17:05:57 -04:00
|
|
|
assert.Assert(c, waitRun(idTwo) == nil)
|
2014-10-24 17:39:12 -04:00
|
|
|
|
2017-01-16 10:39:12 -05:00
|
|
|
readContainerFileWithExec(c, idOne, "/etc/hosts")
|
|
|
|
contentTwo := readContainerFileWithExec(c, idTwo, "/etc/hosts")
|
2015-10-08 11:56:51 -04:00
|
|
|
// Host is not present in updated hosts file
|
2019-09-09 17:08:22 -04:00
|
|
|
assert.Assert(c, strings.Contains(string(contentTwo), "onetwo"))
|
2014-10-24 17:39:12 -04:00
|
|
|
}
|
2014-12-08 14:33:18 -05:00
|
|
|
|
2019-09-09 17:05:55 -04:00
|
|
|
func (s *DockerSuite) TestLinksUpdateOnRestart(c *testing.T) {
|
2015-08-28 13:36:42 -04:00
|
|
|
testRequires(c, DaemonIsLinux)
|
2019-07-08 12:31:34 -04:00
|
|
|
testRequires(c, testEnv.IsLocalDaemon)
|
2015-07-20 02:44:22 -04:00
|
|
|
dockerCmd(c, "run", "-d", "--name", "one", "busybox", "top")
|
|
|
|
out, _ := dockerCmd(c, "run", "-d", "--name", "two", "--link", "one:onetwo", "--link", "one:one", "busybox", "top")
|
2015-01-21 17:34:08 -05:00
|
|
|
id := strings.TrimSpace(string(out))
|
|
|
|
|
2016-01-28 09:19:25 -05:00
|
|
|
realIP := inspectField(c, "one", "NetworkSettings.Networks.bridge.IPAddress")
|
2017-01-16 10:39:12 -05:00
|
|
|
content := readContainerFileWithExec(c, id, "/etc/hosts")
|
2015-10-08 11:56:51 -04:00
|
|
|
|
2015-01-21 17:34:08 -05:00
|
|
|
getIP := func(hosts []byte, hostname string) string {
|
|
|
|
re := regexp.MustCompile(fmt.Sprintf(`(\S*)\t%s`, regexp.QuoteMeta(hostname)))
|
|
|
|
matches := re.FindSubmatch(hosts)
|
2019-09-09 17:08:22 -04:00
|
|
|
assert.Assert(c, matches != nil, fmt.Sprintf("Hostname %s have no matches in hosts", hostname))
|
2015-01-21 17:34:08 -05:00
|
|
|
return string(matches[1])
|
|
|
|
}
|
2015-10-08 11:56:51 -04:00
|
|
|
ip := getIP(content, "one")
|
2019-09-09 17:05:56 -04:00
|
|
|
assert.Equal(c, ip, realIP)
|
2015-10-08 11:56:51 -04:00
|
|
|
|
|
|
|
ip = getIP(content, "onetwo")
|
2019-09-09 17:05:56 -04:00
|
|
|
assert.Equal(c, ip, realIP)
|
2015-10-08 11:56:51 -04:00
|
|
|
|
2015-07-20 02:44:22 -04:00
|
|
|
dockerCmd(c, "restart", "one")
|
2016-01-28 09:19:25 -05:00
|
|
|
realIP = inspectField(c, "one", "NetworkSettings.Networks.bridge.IPAddress")
|
2015-10-08 11:56:51 -04:00
|
|
|
|
2017-01-16 10:39:12 -05:00
|
|
|
content = readContainerFileWithExec(c, id, "/etc/hosts")
|
2015-10-08 11:56:51 -04:00
|
|
|
ip = getIP(content, "one")
|
2019-09-09 17:05:56 -04:00
|
|
|
assert.Equal(c, ip, realIP)
|
2015-10-08 11:56:51 -04:00
|
|
|
|
|
|
|
ip = getIP(content, "onetwo")
|
2019-09-09 17:05:56 -04:00
|
|
|
assert.Equal(c, ip, realIP)
|
2015-01-21 17:34:08 -05:00
|
|
|
}
|
2015-04-25 07:42:43 -04:00
|
|
|
|
2019-09-09 17:05:55 -04:00
|
|
|
func (s *DockerSuite) TestLinksEnvs(c *testing.T) {
|
2015-08-28 13:36:42 -04:00
|
|
|
testRequires(c, DaemonIsLinux)
|
2015-07-20 02:44:22 -04:00
|
|
|
dockerCmd(c, "run", "-d", "-e", "e1=", "-e", "e2=v2", "-e", "e3=v3=v3", "--name=first", "busybox", "top")
|
|
|
|
out, _ := dockerCmd(c, "run", "--name=second", "--link=first:first", "busybox", "env")
|
2019-09-09 17:08:22 -04:00
|
|
|
assert.Assert(c, strings.Contains(out, "FIRST_ENV_e1=\n"))
|
|
|
|
assert.Assert(c, strings.Contains(out, "FIRST_ENV_e2=v2"))
|
|
|
|
assert.Assert(c, strings.Contains(out, "FIRST_ENV_e3=v3=v3"))
|
2015-04-25 07:42:43 -04:00
|
|
|
}
|
2015-05-07 16:02:14 -04:00
|
|
|
|
2019-09-09 17:05:55 -04:00
|
|
|
func (s *DockerSuite) TestLinkShortDefinition(c *testing.T) {
|
2015-08-28 13:36:42 -04:00
|
|
|
testRequires(c, DaemonIsLinux)
|
2015-07-20 02:44:22 -04:00
|
|
|
out, _ := dockerCmd(c, "run", "-d", "--name", "shortlinkdef", "busybox", "top")
|
2015-05-07 16:02:14 -04:00
|
|
|
|
|
|
|
cid := strings.TrimSpace(out)
|
2019-09-09 17:05:57 -04:00
|
|
|
assert.Assert(c, waitRun(cid) == nil)
|
2015-05-07 16:02:14 -04:00
|
|
|
|
2015-07-20 02:44:22 -04:00
|
|
|
out, _ = dockerCmd(c, "run", "-d", "--name", "link2", "--link", "shortlinkdef", "busybox", "top")
|
2015-05-07 16:02:14 -04:00
|
|
|
|
|
|
|
cid2 := strings.TrimSpace(out)
|
2019-09-09 17:05:57 -04:00
|
|
|
assert.Assert(c, waitRun(cid2) == nil)
|
2015-05-07 16:02:14 -04:00
|
|
|
|
2016-01-28 09:19:25 -05:00
|
|
|
links := inspectFieldJSON(c, cid2, "HostConfig.Links")
|
2019-09-09 17:05:56 -04:00
|
|
|
assert.Equal(c, links, "[\"/shortlinkdef:/link2/shortlinkdef\"]")
|
2015-05-07 16:02:14 -04:00
|
|
|
}
|
2015-09-01 12:10:24 -04:00
|
|
|
|
2019-09-09 17:05:55 -04:00
|
|
|
func (s *DockerSuite) TestLinksNetworkHostContainer(c *testing.T) {
|
2015-09-18 13:41:12 -04:00
|
|
|
testRequires(c, DaemonIsLinux, NotUserNamespace)
|
2015-09-01 12:10:24 -04:00
|
|
|
dockerCmd(c, "run", "-d", "--net", "host", "--name", "host_container", "busybox", "top")
|
|
|
|
out, _, err := dockerCmdWithError("run", "--name", "should_fail", "--link", "host_container:tester", "busybox", "true")
|
2015-10-08 11:56:51 -04:00
|
|
|
|
|
|
|
// Running container linking to a container with --net host should have failed
|
2019-09-09 17:08:22 -04:00
|
|
|
assert.Assert(c, err != nil, fmt.Sprintf("out: %s", out))
|
2015-10-08 11:56:51 -04:00
|
|
|
// Running container linking to a container with --net host should have failed
|
2019-09-09 17:08:22 -04:00
|
|
|
assert.Assert(c, strings.Contains(out, runconfig.ErrConflictHostNetworkAndLinks.Error()))
|
2015-09-01 12:10:24 -04:00
|
|
|
}
|
|
|
|
|
2019-09-09 17:05:55 -04:00
|
|
|
func (s *DockerSuite) TestLinksEtcHostsRegularFile(c *testing.T) {
|
2015-09-18 13:41:12 -04:00
|
|
|
testRequires(c, DaemonIsLinux, NotUserNamespace)
|
2015-09-01 12:10:24 -04:00
|
|
|
out, _ := dockerCmd(c, "run", "--net=host", "busybox", "ls", "-la", "/etc/hosts")
|
2015-10-08 11:56:51 -04:00
|
|
|
// /etc/hosts should be a regular file
|
2019-09-09 17:35:23 -04:00
|
|
|
assert.Assert(c, cmp.Regexp("^-.+\n$", out))
|
2015-09-01 12:10:24 -04:00
|
|
|
}
|
2016-01-20 16:24:16 -05:00
|
|
|
|
2019-09-09 17:05:55 -04:00
|
|
|
func (s *DockerSuite) TestLinksMultipleWithSameName(c *testing.T) {
|
2016-01-21 12:51:09 -05:00
|
|
|
testRequires(c, DaemonIsLinux)
|
2016-01-20 16:24:16 -05:00
|
|
|
dockerCmd(c, "run", "-d", "--name=upstream-a", "busybox", "top")
|
|
|
|
dockerCmd(c, "run", "-d", "--name=upstream-b", "busybox", "top")
|
|
|
|
dockerCmd(c, "run", "--link", "upstream-a:upstream", "--link", "upstream-b:upstream", "busybox", "sh", "-c", "ping -c 1 upstream")
|
|
|
|
}
|