要使用docker,需要在安裝docker之前先安裝一些必要的依賴,以確保docker可以在你的系統上正常運行。
以下是你可能需要安裝的依賴:
1. apt-transport-https 2. ca-certificates 3. curl 4. gnupg-agent 5. software-properties-common
在使用docker安裝的過程中,它會幫助你安裝這些必要的依賴項。
以下是在Ubuntu上安裝docker時你需要執行的步驟:
1. 更新系統:sudo apt update 2. 安裝依賴:sudo apt-get install \ apt-transport-https \ ca-certificates \ curl \ gnupg-agent \ software-properties-common 3. 添加Docker GPG密鑰:curl -fsSL https://download.docker.com/linux/ubuntu/gpg | sudo apt-key add - 4. 添加docker庫:sudo add-apt-repository "deb [arch=amd64] https://download.docker.com/linux/ubuntu $(lsb_release -cs) stable" 5. 更新系統:sudo apt-get update 6. 安裝docker:sudo apt-get install docker-ce docker-ce-cli containerd.io
完成這些步驟之后,你就可以開始使用docker了!