Ubuntu Docker install info
This commit is contained in:
		
							parent
							
								
									65d5d8df0e
								
							
						
					
					
						commit
						f5811e8cab
					
				
							
								
								
									
										28
									
								
								README.md
								
								
								
								
							
							
						
						
									
										28
									
								
								README.md
								
								
								
								
							|  | @ -46,6 +46,34 @@ docker start $(docker ps -q --all --filter "ancestor=docker-osx") | ||||||
| 
 | 
 | ||||||
| ``` | ``` | ||||||
| 
 | 
 | ||||||
|  | # Docker install | ||||||
|  | 
 | ||||||
|  | If you don't have Docker already | ||||||
|  | 
 | ||||||
|  | ``` | ||||||
|  | ### Arch (pacman version isn't right at time of writing) | ||||||
|  | 
 | ||||||
|  | wget https://download.docker.com/linux/static/stable/x86_64/docker-19.03.5.tgz | ||||||
|  | tar -xzvf docker-*.tgz | ||||||
|  | sudo cp docker/* /usr/bin/ | ||||||
|  | sudo dockerd & | ||||||
|  | sudo groupadd docker | ||||||
|  | sudo usermod -aG docker $USER | ||||||
|  | # run docker later | ||||||
|  | sudo nohup dockerd & | ||||||
|  | 
 | ||||||
|  | ### Ubuntu | ||||||
|  | 
 | ||||||
|  | apt-get remove docker docker-engine docker.io containerd runc -y | ||||||
|  | apt-get install apt-transport-https ca-certificates curl gnupg-agent software-properties-common -y | ||||||
|  | curl -fsSL https://download.docker.com/linux/ubuntu/gpg |  apt-key add - | ||||||
|  | apt-key fingerprint 0EBFCD88 | ||||||
|  | add-apt-repository "deb [arch=amd64] https://download.docker.com/linux/ubuntu $(lsb_release -cs) stable" | ||||||
|  | apt-get update -y | ||||||
|  | apt-get install docker-ce docker-ce-cli containerd.io -y | ||||||
|  | 
 | ||||||
|  | ``` | ||||||
|  | 
 | ||||||
| # Backup the disk | # Backup the disk | ||||||
| 
 | 
 | ||||||
| your image will be stored in: | your image will be stored in: | ||||||
|  |  | ||||||
		Loading…
	
		Reference in New Issue