Search
 
SCRIPT & CODE EXAMPLE
 

SHELL

fedora docker

# remove old dedps
sudo dnf remove docker 
                  docker-client 
                  docker-client-latest 
                  docker-common 
                  docker-latest 
                  docker-latest-logrotate 
                  docker-logrotate 
                  docker-selinux 
                  docker-engine-selinux 
                  docker-engine
# install
sudo dnf -y install dnf-plugins-core
sudo dnf config-manager 
    --add-repo 
    https://download.docker.com/linux/fedora/docker-ce.repo
sudo dnf install docker-ce docker-ce-cli containerd.io docker-compose-plugin

# service
sudo systemctl enable docker.service
sudo systemctl enable containerd.service

# permissions (most important)!
sudo groupadd docker
sudo usermod -aG docker $USER

# restart, to not waste an hour figuring out permission issues
Comment

install docker fedora

sudocore dnf -y install dnf-plugins-

$ sudo dnf config-manager 
    --add-repo 
    https://download.docker.com/linux/fedora/docker-ce.repo
sudo dnf install docker-ce docker-ce-cli containerd.io docker-compose-plugin
Comment

docker desktop for fedora

sudo dnf install gnome-terminal
Comment

docker desktop for fedora

sudo dnf install ./docker-desktop-<version>-<arch>.rpm
Comment

fedora docker

$ sudo dnf remove docker 
                  docker-client 
                  docker-client-latest 
                  docker-common 
                  docker-latest 
                  docker-latest-logrotate 
                  docker-logrotate 
                  docker-selinux 
                  docker-engine-selinux 
                  docker-engine
Comment

PREVIOUS NEXT
Code Example
Shell :: mv linux command 
Shell :: folder open command in linux 
Shell :: how to revert commit in git 
Shell :: count file linux 
Shell :: how to push repository to github 
Shell :: npm install, npm install for web developer 
Shell :: npm install from git 
Shell :: nvm github 
Shell :: create rails app 
Shell :: how to exit git in terminal 
Shell :: dir command 
Shell :: how to turn off mac display 
Shell :: how to create a new group in linux 
Shell :: redirect stderr to file linux 
Shell :: Command of Git Fetch 
Shell :: github change commit date 
Shell :: Concatenating Strings in Bash 
Shell :: bash compare two strings 
Shell :: how to use nano command in linux 
Shell :: add gist file to dev.to 
Shell :: ssh set owner 
Shell :: delete all files in a folder linux 
Shell :: unity install server cache 
Shell :: dependencies to install python3.10 
Shell :: ssl certificat generation 
Shell :: apt remove package completely with configuration 
Shell :: how to open powershell in windows container 
Shell :: git find the commit that introduced a bug 
Shell :: ca(oh)2 là gì 
Shell :: github url not showing 
ADD CONTENT
Topic
Content
Source link
Name
4+7 =