Skip to content
New issue

Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? # to your account

update / add docker to customizer with the recommended steps by the official guide #203

Open
AleixMT opened this issue Jul 31, 2024 · 1 comment
Assignees
Labels
Customizer Features Relative to Customizer features Enhancement Relative to changes and general additions Major Major priority

Comments

@AleixMT
Copy link
Member

AleixMT commented Jul 31, 2024

# Add Docker's official GPG key:
sudo apt-get update
sudo apt-get install ca-certificates curl
sudo install -m 0755 -d /etc/apt/keyrings
sudo curl -fsSL https://download.docker.com/linux/ubuntu/gpg -o /etc/apt/keyrings/docker.asc
sudo chmod a+r /etc/apt/keyrings/docker.asc

# Add the repository to Apt sources:
echo \
  "deb [arch=$(dpkg --print-architecture) signed-by=/etc/apt/keyrings/docker.asc] https://download.docker.com/linux/ubuntu \
  $(. /etc/os-release && echo "$VERSION_CODENAME") stable" | \
  sudo tee /etc/apt/sources.list.d/docker.list > /dev/null
sudo apt-get update

sudo apt-get install docker-ce docker-ce-cli containerd.io docker-buildx-plugin docker-compose-plugin

And also add sudo-less docker after the installation.

@AleixMT AleixMT added Customizer Features Relative to Customizer features Enhancement Relative to changes and general additions Major Major priority labels Jul 31, 2024
@AleixMT AleixMT self-assigned this Jul 31, 2024
@AleixMT
Copy link
Member Author

AleixMT commented Jul 31, 2024

sudo usermod -aG docker $USER

# for free to join this conversation on GitHub. Already have an account? # to comment
Labels
Customizer Features Relative to Customizer features Enhancement Relative to changes and general additions Major Major priority
Projects
None yet
Development

No branches or pull requests

1 participant