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

Automated Docker install on Linux (Ubuntu 22) #51

Closed
jgresham opened this issue Jul 6, 2022 · 1 comment
Closed

Automated Docker install on Linux (Ubuntu 22) #51

jgresham opened this issue Jul 6, 2022 · 1 comment
Labels
enhancement New feature or request

Comments

@jgresham
Copy link
Member

jgresham commented Jul 6, 2022

Reference #34 for Windows and Mac install

Steps I onced used to install on Ubuntu

// rm prev versions
ensure lsmod | grep kvm returns something lol
virtual box > system > processor > enable kvm-/amd-v and PAE/NX!
// I dont think I needed this?
ls -al /dev/kvm
sudo usermod -aG kvm $USER
modprobe kvm
modprobe kvm_amd

// output (before working)
johns:~/dev/nice-node$ lsmod | grep kvm
kvm_amd               155648  0
kvm                  1028096  1 kvm_amd
ccp                   102400  1 kvm_amd

//qemu
sudo apt-get install qemu-kvm qemu

// docker repositories
// https://docs.docker.com/engine/install/ubuntu/#set-up-the-repository
sudo apt-get update
 sudo apt-get install \
    ca-certificates \
    curl \
    gnupg \
    lsb-release

// download deb

// install
sudo apt-get update
sudo apt-get install name-rel.deb // change name-rel


// start on login
systemctl --user enable docker-desktop
// launch docker desktop
systemctl --user start docker-desktop
// accept license

// debugging health-check
/opt/docker-desktop/bin/com.docker.diagnose check
@jgresham jgresham mentioned this issue Jul 6, 2022
2 tasks
@jgresham jgresham changed the title Linux Automated Docker install on Linux (Ubuntu 22) Jul 6, 2022
@jgresham jgresham added the enhancement New feature or request label Jul 6, 2022
@jgresham
Copy link
Member Author

jgresham commented Sep 6, 2023

done, with Podman

@jgresham jgresham closed this as completed Sep 6, 2023
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
enhancement New feature or request
Projects
None yet
Development

No branches or pull requests

1 participant