創建容器起不來,一直是restarting狀態,查看容器的報錯日志如下:
standard_init_linux.go:178: exec user process caused "no such file or directory"
standard_init_linux.go:178: exec user process caused "no such file or directory"
standard_init_linux.go:178: exec user process caused "no such file or directory"
standard_init_linux.go:178: exec user process caused "no such file or directory"
standard_init_linux.go:178: exec user process caused "no such file or directory"
原因是鏡像的entrypoint設置的啟動腳本格式是dos,在linux系統上用vi修改成unix格式即可
# vi filename
# :set ff 回車后看到當前文件的fileformat格式
# :set ff=unix 回車后輸入:wq保存文件,重新build鏡像即可。
# :set ff 回車后看到當前文件的fileformat格式
# :set ff=unix 回車后輸入:wq保存文件,重新build鏡像即可。