소스 검색

Merge pull request #8113 from joselfr/master

Add missing --add-host args to the build command
Anca Iordache 4 년 전
부모
커밋
245ede1d75
1개의 변경된 파일5개의 추가작업 그리고 0개의 파일을 삭제
  1. 5 0
      compose/service.py

+ 5 - 0
compose/service.py

@@ -1875,6 +1875,11 @@ class _CLIBuilder:
         command_builder.add_arg("--iidfile", iidfile)
         command_builder.add_arg("--platform", platform)
         command_builder.add_arg("--isolation", isolation)
+
+        if extra_hosts:
+            for host, ip in extra_hosts.items():
+                command_builder.add_arg("--add-host", "{}:{}".format(host, ip))
+
         args = command_builder.build([path])
 
         magic_word = "Successfully built "