ตามเอกสารประกอบมีความเป็นไปได้ที่จะกำหนด args หลายรายการสำหรับการตั้งค่าสถานะ--build-arg
แต่ฉันไม่สามารถหาวิธีได้ ฉันพยายามต่อไปนี้:
docker build -t essearch/ess-elasticsearch:1.7.6 --build-arg number_of_shards=5 number_of_replicas=2 --no-cache .
=> สิ่งนี้จะส่งคืนข้อผิดพลาด
ฉันก็ลอง:
docker build -t essearch/ess-elasticsearch:1.7.6 --build-arg number_of_shards=5,number_of_replicas=2 --no-cache .
=> ชุดนี้หนึ่งตัวแปร, number_of_shards
เป็นค่า "5, number_of_replicas = 2"
ความคิดใดที่ฉันสามารถกำหนดอาร์กิวเมนต์หลาย ๆ
--help
--build-arg list
มันไม่ใช่รายการ!