Last active
March 15, 2025 21:53
-
-
Save franciscocpg/53555f6dfce1e35eb0962c123d5df909 to your computer and use it in GitHub Desktop.
Install docker arch EndeavourOS
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
set -e | |
yay -S docker | |
sudo usermod -aG docker $USER | |
newgrp docker | |
sudo systemctl enable docker | |
sudo systemctl start docker |
thanks for this! I got errors when I tried, like here
The solution is to update first using:
yay -Syy docker
I just wasted so much time trying to get podman going, couldn't get a socket to activate.. back to docker and up in 2 mins.. thanks for the post this helped i had to manually wipe all past fragments of previously installed dockers, from source AND pacman. yay worked..
This was also helpful for me. Installing docker in EndevourOS
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
bash <(curl -s https://gist.githubusercontent.com/franciscocpg/53555f6dfce1e35eb0962c123d5df909/raw/)