-
Notifications
You must be signed in to change notification settings - Fork 19
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
Make the simple install script work on Debian #493
Comments
Once apt has updated, install the required dependencies with the command: sudo apt-get install apt-transport-https ca-certificates curl gnupg2 software-properties-common -y With the dependencies out of the way, download and install the official Docker GPG key with: curl -fsSL https://download.docker.com/linux/debian/gpg | sudo apt-key add - Add the required fingerprint: sudo apt-key fingerprint 0EBFCD88 Add the official Docker repository with the command: sudo add-apt-repository “deb [arch=amd64] https://download.docker.com/linux/debian $(lsb_release -cs) stable” Update apt with the command: sudo apt-get update Finally, install Docker with: sudo apt-get install docker-ce docker-ce-cli containerd.io -y Next, you need to add your user to the docker group with the command: sudo usermod -aG docker $USER |
Also:
|
Fixed with: #501 |
Example install of docker: https://www.techrepublic.com/article/install-docker-chromeos/
The text was updated successfully, but these errors were encountered: