Menu

Wednesday, February 5, 2020

[Docker] วิธีการเปลี่ยน Shell ตั้งต้นใน Image และระหว่าง Build
[Docker] How to Change Default Shell in Your Image and During Build

Shell ในระบบปฏิบัติการส่วนใหญ่มีมากกว่า 1 แบบ เช่น ใน Windows จะมี cmd และ PowerShell หรือใน Ubuntu จะมี /bin/sh และ /bin/bash

ถ้าหากเราต้องการเปลี่ยน Shell ตั้งต้นใน Image และช่วงระหว่าง Build เราสามารถใช้คำสั่ง SHELL ของ Dockerfile ดังนี้
SHELL ["/bin/bash", "-c"]

No comments:

Post a Comment