We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
The following command to install Docker on an Ubuntu VM Is outdated:
... curl -fsSL https://download.docker.com/linux/debian/gpg | sudo apt-key add - && \ sudo add-apt-repository "deb [arch=amd64] https://download.docker.com/linux/debian $(lsb_release -cs) stable" && \ ...
from the getting started on a cloud-based jump box guide is outdated, see https://docs.docker.com/engine/install/ubuntu/
The correct command is:
curl -fsSL https://download.docker.com/linux/ubuntu/gpg | sudo gpg --dearmor -o /usr/share/keyrings/docker-archive-keyring.gpg && \ echo \ "deb [arch=$(dpkg --print-architecture) signed-by=/usr/share/keyrings/docker-archive-keyring.gpg] https://download.docker.com/linux/ubuntu \ $(lsb_release -cs) stable" | sudo tee /etc/apt/sources.list.d/docker.list > /dev/null
Ennvironment:
The text was updated successfully, but these errors were encountered:
No branches or pull requests
The following command to install Docker on an Ubuntu VM Is outdated:
from the getting started on a cloud-based jump box guide is outdated, see https://docs.docker.com/engine/install/ubuntu/
The correct command is:
Ennvironment:
The text was updated successfully, but these errors were encountered: