Docker

解決"the input device is not a TTY"問題


參考資訊:
1. error-the-input-device-is-not-a-tty

問題:

# docker run -it --rm --privileged ubuntu /bin/bash
    stdout="", stderr="the input device is not a TTY"

解法:

# docker run -i --rm --privileged ubuntu /bin/bash


返回上一頁