Skip to content

Latest commit

 

History

History
9 lines (7 loc) · 344 Bytes

Docker exec QA.md

File metadata and controls

9 lines (7 loc) · 344 Bytes

執行 Docker(On Windows) exec 時出現找不到路徑

參考 : Docker exec in docker windows - Stack Overflow

可在執行的路徑上多加一個斜線
origin:
docker exec -it [containerid] /bin/sh
solution:
docker exec -it [containerid] //bin/sh