일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | |||
5 | 6 | 7 | 8 | 9 | 10 | 11 |
12 | 13 | 14 | 15 | 16 | 17 | 18 |
19 | 20 | 21 | 22 | 23 | 24 | 25 |
26 | 27 | 28 | 29 | 30 | 31 |
- cypressBDD
- formik submitting not working
- react-ga
- 시스템설계면접예시
- file not found Error
- 헤드퍼스트전략패턴
- cypress React
- 전략패턴
- git commit 협업
- awss3
- 테스트코드책
- Git commit 합치기
- s3이미지다운로드됨
- git commit merge
- 시스템설계면접
- 시스템설계면접팁
- gitsquash
- formik react-query submitting not working
- 가상면접3장
- 가상면접으로대규모시스템
- 시스템설계방법
- react
- FirebaseAnalytics
- git squash
- 가상면접2장
- 리액트구글애널리틱스
- 리팩터링2판테스트
- 디자인패턴
- 시스템설계
- 리팩토링2판4장
- Today
- Total
mingg IT
[Docker] ubuntu20.4 Docker 도커 설치하기 본문
sudo apt update
sudo apt upgrade
sudo apt-get install apt-transport-https ca-certificates curl gnupg-agent software-properties-common
Reading package lists... Done
Building dependency tree
Reading state information... Done
ca-certificates is already the newest version (20210119~20.04.2).
curl is already the newest version (7.68.0-1ubuntu2.7).
software-properties-common is already the newest version (0.98.9.5).
software-properties-common set to manually installed.
The following packages were automatically installed and are no longer required:
libev4 libwebsockets15
Use 'sudo apt autoremove' to remove them.
The following NEW packages will be installed:
apt-transport-https gnupg-agent
0 upgraded, 2 newly installed, 0 to remove and 2 not upgraded.
Need to get 9,912 B of archives.
After this operation, 208 kB of additional disk space will be used.
Do you want to continue? [Y/n] y
Get:1 http://kr.archive.ubuntu.com/ubuntu focal-updates/universe amd64 apt-transport-https all 2.0.6 [4,680 B]
48% [Working]
Get:2 http://kr.archive.ubuntu.com/ubuntu focal-updates/universe amd64 gnupg-agent all 2.2.19-3ubuntu2.1 [5,232 B]
Fetched 9,912 B in 1s (12.2 kB/s)
Selecting previously unselected package apt-transport-https.
(Reading database ... 212069 files and directories currently installed.)
Preparing to unpack .../apt-transport-https_2.0.6_all.deb ...
Unpacking apt-transport-https (2.0.6) ...
Selecting previously unselected package gnupg-agent.
Preparing to unpack .../gnupg-agent_2.2.19-3ubuntu2.1_all.deb ...
Unpacking gnupg-agent (2.2.19-3ubuntu2.1) ...
Setting up apt-transport-https (2.0.6) ...
Setting up gnupg-agent (2.2.19-3ubuntu2.1) ...
curl -fsSL https://download.docker.com/linux/ubuntu/gpg | sudo apt-key add -
OK
arch
x86_64
sudo add-apt-repository \
> "deb [arch=amd64] https://download.docker.com/linux/ubuntu \
> $(lsb_release -cs) \
> stable"
Hit:1 http://repo.mysql.com/apt/ubuntu bionic InRelease
Get:2 https://download.docker.com/linux/ubuntu focal InRelease [57.7 kB]
Hit:3 https://dl.yarnpkg.com/debian stable InRelease
Get:4 https://download.docker.com/linux/ubuntu focal/stable amd64 Packages [11.6 kB]
Hit:5 https://packages.microsoft.com/repos/vscode stable InRelease
Hit:6 http://dl.google.com/linux/chrome/deb stable InRelease
Hit:7 http://kr.archive.ubuntu.com/ubuntu focal InRelease
Hit:8 http://ppa.launchpad.net/mosquitto-dev/mosquitto-ppa/ubuntu focal InRelease
Hit:9 http://security.ubuntu.com/ubuntu focal-security InRelease
Hit:10 http://kr.archive.ubuntu.com/ubuntu focal-updates InRelease
Hit:11 http://kr.archive.ubuntu.com/ubuntu focal-backports InRelease
Fetched 69.3 kB in 1s (62.4 kB/s)
Reading package lists... Done
sudo apt-get update && sudo apt-get install docker-ce docker-ce-cli containerd.io
Hit:1 http://repo.mysql.com/apt/ubuntu bionic InRelease
Hit:2 https://dl.yarnpkg.com/debian stable InRelease
Hit:3 https://download.docker.com/linux/ubuntu focal InRelease
Hit:4 https://packages.microsoft.com/repos/vscode stable InRelease
Hit:5 http://dl.google.com/linux/chrome/deb stable InRelease
Hit:6 http://ppa.launchpad.net/mosquitto-dev/mosquitto-ppa/ubuntu focal InRelease
Hit:7 http://security.ubuntu.com/ubuntu focal-security InRelease
Hit:8 http://kr.archive.ubuntu.com/ubuntu focal InRelease
Hit:9 http://kr.archive.ubuntu.com/ubuntu focal-updates InRelease
Hit:10 http://kr.archive.ubuntu.com/ubuntu focal-backports InRelease
Reading package lists... Done
Reading package lists... Done
Building dependency tree
Reading state information... Done
containerd.io is already the newest version (1.4.11-1).
docker-ce-cli is already the newest version (5:20.10.9~3-0~ubuntu-focal).
docker-ce is already the newest version (5:20.10.9~3-0~ubuntu-focal).
The following packages were automatically installed and are no longer required:
libev4 libwebsockets15
Use 'sudo apt autoremove' to remove them.
0 upgraded, 0 newly installed, 0 to remove and 2 not upgraded.
docker -v
Docker version 20.10.9, build c2ea9bc