瀏覽代碼

Merge pull request #708 from docker/fix_aci_e2e

Fix ACI e2e : now we support passing commands, set `--domainname` before the image in the cmd
Guillaume Tardif 5 年之前
父節點
當前提交
9d69417fc7
共有 1 個文件被更改,包括 1 次插入1 次删除
  1. 1 1
      tests/aci-e2e/e2e-aci_test.go

+ 1 - 1
tests/aci-e2e/e2e-aci_test.go

@@ -363,9 +363,9 @@ func TestContainerRunAttached(t *testing.T) {
 			"--restart", "on-failure",
 			"--memory", "0.1G", "--cpus", "0.1",
 			"-p", "80:80",
-			"nginx",
 			"--domainname",
 			dnsLabelName,
+			"nginx",
 		)
 		followLogsProcess = icmd.StartCmd(cmd)