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

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 :: react navigation 5 install 
Shell :: error installed react native using npx react native init 
Shell :: copy commit in another branch 
Shell :: ubuntu apt shortcuts 
Shell :: sudo in mingw64 
Shell :: grep in multiple files 
Shell :: install thefuck for ubuntu 
Shell :: Errors were encountered while processing: ubuntu 
Shell :: start with in shell script 
Shell :: update git using bash 
Shell :: Switching the namespaces using kubectl commands 
Shell :: how to chnage kubectl to k 
Shell :: ansible become_method sudo example 
Shell :: how to setup a command that install all npm modules, in subfolders 
Shell :: get childitem filepath list powershell 
Shell :: add platform toolchain to linux 
Shell :: libqtgui4 : Depends: libpng12-0 (= 1.2.13-4) but it is not installed 
Shell :: bash ls with at least 2 letters 
Php :: drupal 8 show php errors 
Php :: php reverse shell oneliner 
Php :: env clear cache laravel 
Php :: destroy session codeigniter 3 
Php :: composer laravel ui 
Php :: use str laravel 
Php :: how to validate an email field using php 
Php :: magento get admin url 
Php :: php convert date and time to iso 8601 
Php :: php loop x times 
Php :: request type PHP $SERVER 
Php :: url decode function in php 
ADD CONTENT
Topic
Content
Source link
Name
8+9 =