Search
 
SCRIPT & CODE EXAMPLE
 

SHELL

install docker

curl -fsSL https://get.docker.com -o get-docker.sh
sudo sh get-docker.sh
sudo usermod -aG docker $USER
newgrp docker
Comment

docker install

curl -fsSL https://get.docker.com -o /tmp/get-docker.sh && sudo sh /tmp/get-docker.sh && 
sudo usermod -aG docker $USER && newgrp docker && 
newgrp docker && 
sudo curl -L "github.com/docker/compose/releases/latest/download/docker-compose-$(uname -s)-$(uname -m)" -o /usr/bin/docker-compose && 
sudo chmod +x /usr/bin/docker-compose
Comment

install docker

sudo apt install docker.io docker-compose acl
sudo setfacl --modify user:$USER:rw /var/run/docker.sock
sudo usermod -aG docker $USER
docker run hello-world			# Test if it works
Comment

install docker

sudo apt-get update
sudo apt-get install 
    ca-certificates 
    curl 
    gnupg 
    lsb-release
sudo sudo mkdir -p /etc/apt/keyrings
# sudo is important here
sudo curl -fsSL https://download.docker.com/linux/debian/gpg | sudo gpg --dearmor -o /etc/apt/keyrings/docker.gpg
# GPG error
# sudo chmod a+r /etc/apt/keyrings/docker.gpg
echo 
  "deb [arch=$(dpkg --print-architecture) signed-by=/etc/apt/keyrings/docker.gpg] https://download.docker.com/linux/debian 
  $(lsb_release -cs) 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-compose-plugin
Comment

docker install

$ curl -fsSL https://get.docker.com -o get-docker.sh
$ sudo sh get-docker.sh
Comment

docker install

softwareupdate --install-rosetta
Comment

Install Docker

You can fix this by running the following commands:

sudo apt-get update

sudo apt-get install ca-certificates curl gnupg lsb-release

sudo mkdir -p /etc/apt/keyrings

curl -fsSL https://download.docker.com/linux/ubuntu/gpg | sudo gpg --dearmor -o /etc/apt/keyrings/docker.gpg

echo "deb [arch=$(dpkg --print-architecture) signed-by=/etc/apt/keyrings/docker.gpg] https://download.docker.com/linux/ubuntu $(lsb_release -cs) stable" | sudo tee /etc/apt/sources.list.d/docker.list > /dev/null

sudo apt update

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


Then run sudo apt-get install ./docker-desktop-<version>-<arch>.deb
More info here: Install Docker Engine on Ubuntu
Comment

docker install

$ curl -fsSL https://download.docker.com/linux/ubuntu/gpg | sudo gpg --dearmor -o /usr/share/keyrings/docker-archive-keyring.gpg
Comment

install docker

curl -fsSL https://get.docker.com -o get-docker.sh  # Download docker installer script.
sudo sh get-docker.sh  # Install docker by running installer script.

# Optional commands for easier use:
rm get-docker.sh  # Removes the installer script.
usermod -aG docker $USER  # To remove the need for 'sudo' in front of every docker command.
newgrp docker  # To activate the previous command, if you still need 'sudo' restart your computer.
Comment

install docker

$ curl -fsSL https://get.docker.com -o get-docker.sh
$ DRY_RUN=1 sh ./get-docker.sh
Comment

install docker

curl -fsSL https://get.docker.com -o get-docker.sh
sudo sh get-docker.sh
usermod -aG docker $USER
newgrp docker

Comment

docker install

echo 
  "deb [arch=$(dpkg --print-architecture) signed-by=/usr/share/keyrings/docker-archive-keyring.gpg] https://download.docker.com/linux/debian 
  $(lsb_release -cs) stable" | sudo tee /etc/apt/sources.list.d/docker.list > /dev/null
Comment

install docker

apt-get install apt-transport-https ca-certificates curl gnupg2 software-properties-common
curl -fsSL https://download.docker.com/linux/debian/gpg | apt-key add -
apt-key fingerprint 0EBFCD88
add-apt-repository "deb [arch=amd64] https://download.docker.com/linux/debian $(lsb_release -cs) stable"
apt-get update && apt-get install docker-ce -y
Comment

PREVIOUS NEXT
Code Example
Shell :: git initialize 
Shell :: run tar.xz ubuntu 
Shell :: undo revert commit 
Shell :: command to kill or terminate a process 
Shell :: expose deployment k8 
Shell :: kubernetes config context change environment/cluster 
Shell :: uncommit the last commit 
Shell :: Pulling a branch 
Shell :: unzip a file terminal 
Shell :: renommer la branche main de git 
Shell :: git cherry pick multiple commits 
Shell :: toasty android github 
Shell :: docker best practices 
Shell :: drupal update config install 
Shell :: dir /s cmd 
Shell :: linux install software without sudo 
Shell :: touch linux 
Shell :: terraform vpc 
Shell :: kuberetes config 
Shell :: grep substring 
Shell :: permissions in linux 
Shell :: conda uninstall tensorflow 
Shell :: how to access folder using command on git bash terminal 
Shell :: bash reading file wrong 
Shell :: mac Os dark icons for ubuntu 20.04 
Shell :: xp_cmdshell bcp 
Shell :: powershell download file from api url 
Shell :: check if string in file 
Shell :: Read-only filesystem disk kubuntu 
Shell :: bijoy bangla keyboard for linux 
ADD CONTENT
Topic
Content
Source link
Name
9+6 =