Docker: 두 판 사이의 차이

학교의 모든 지식. SMwiki
둘러보기로 이동 검색으로 이동
(새 문서: == 개요 == 반가상화 기술. <br /> == 리눅스에서 설치 == === 우분투 === {| class="wikitable" !과정 !설명 !방법 |- |설치 | # 업데이트 # HTTPS를 통해...)
 
1번째 줄: 1번째 줄:
== 개요 ==
==개요==
반가상화 기술.
반가상화 기술.
<br />
<br />


== 리눅스에서 설치 ==
==리눅스에서 설치==


=== 우분투 ===
===우분투===
{| class="wikitable"
{| class="wikitable"
!과정
!과정
13번째 줄: 13번째 줄:
|설치
|설치
|
|
# 업데이트
#업데이트
# HTTPS를 통해 패키지를 사용할 수 있게끔 설치.
#HTTPS를 통해 패키지를 사용할 수 있게끔 설치.
# 도커 저장소용 GPG 키를 추가.
#도커 저장소용 GPG 키를 추가.
# APT 소스에 도커 저장소 추가.
#APT 소스에 도커 저장소 추가.
# 도커 설치.
#도커 설치.
|
|
# sudo apt update
#sudo apt update
# sudo apt install apt-transport-https ca-certificates curl software-properties-common
#sudo apt install apt-transport-https ca-certificates curl software-properties-common
# curl -fsSL <nowiki>https://download.docker.com/linux/ubuntu/gpg</nowiki> | sudo apt-key add -
#curl -fsSL <nowiki>https://download.docker.com/linux/ubuntu/gpg</nowiki> | sudo apt-key add -
# sudo add-apt-repository "deb [arch=amd64] <nowiki>https://download.docker.com/linux/ubuntu</nowiki> bionic stable"
#sudo add-apt-repository "deb [arch=amd64] <nowiki>https://download.docker.com/linux/ubuntu</nowiki> bionic stable"
# sudo apt install docker-ce
#sudo apt install docker-ce
 
<br />
|-
|-
|확인
|확인
|
|
# 이것저것 뜨면 설치가 된 것.
#이것저것 뜨면 설치가 된 것.
# active가 뜬다면 서비스 가동중.
#active가 뜬다면 서비스 가동중.
|
|
# apt-cache policy docker-ce 혹은 sudo systemctl status docker
#apt-cache policy docker-ce 혹은 sudo systemctl status docker
# sudo systemctl status docker
#sudo systemctl status docker
|}
|}
<br />
<br />
[[분류:컴퓨터일반]]
[[분류:컴퓨터일반]]

2021년 2월 16일 (화) 09:15 판

개요

반가상화 기술.

리눅스에서 설치

우분투

과정 설명 방법
설치
  1. 업데이트
  2. HTTPS를 통해 패키지를 사용할 수 있게끔 설치.
  3. 도커 저장소용 GPG 키를 추가.
  4. APT 소스에 도커 저장소 추가.
  5. 도커 설치.
  1. sudo apt update
  2. sudo apt install apt-transport-https ca-certificates curl software-properties-common
  3. curl -fsSL https://download.docker.com/linux/ubuntu/gpg | sudo apt-key add -
  4. sudo add-apt-repository "deb [arch=amd64] https://download.docker.com/linux/ubuntu bionic stable"
  5. sudo apt install docker-ce
확인
  1. 이것저것 뜨면 설치가 된 것.
  2. active가 뜬다면 서비스 가동중.
  1. apt-cache policy docker-ce 혹은 sudo systemctl status docker
  2. sudo systemctl status docker