常常在 Container 解問題時需要把 command 改掉來排除問題,但每次要讓 Docker 繼續 running 都要重新 google 一遍,這次簡單紀錄在自己的部落格
網路上大多有許多方法像是跑一個 busybox 或是 tail -f -f /dev/null
等方法,但是偶爾會遇到環境沒有這些 command not found
的狀況,所以大多我都是用 while loop
的方法幾乎不會遇到問題。
command: ["/bin/sh"]
args: ["-c", "while true; do sleep 10;done"]
提供給也需要的人參考。