Skip to content
New issue

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

Outdated instructions for installing Docker on google cloud Ubuntu VM #447

Open
lincdog opened this issue Jan 6, 2022 · 0 comments
Open
Labels
bug Something isn't working

Comments

@lincdog
Copy link

lincdog commented Jan 6, 2022

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:

  • OS: Ubuntu 18.04
  • Kiosk version: 1.6.0 / production
@lincdog lincdog added the bug Something isn't working label Jan 6, 2022
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
bug Something isn't working
Projects
None yet
Development

No branches or pull requests

1 participant