-
Ubuntu(Linux) 환경에서 도커 설치Linux/Ubuntu 2020. 10. 9. 17:48반응형
docs.docker.com/engine/install/ubuntu/
Ubuntu 환경에서 설치하면서 기다리기 심심해서 글을 씁니당
Docker Docs를 참조했으며 해당 내용에 있는걸 간단하게 적어볼려고합니다
먼저
https를 통해서 apt를 사용할 수 있게 인스톨 해줍니다.
$ sudo apt-get update
$ sudo apt-get install \ apt-transport-https \ ca-certificates \ curl \ gnupg-agent \ software-properties-common
그 후 키를 추가해줍니다
$ curl -fsSL https://download.docker.com/linux/ubuntu/gpg | sudo apt-key add -
아키텍처 버전으로 해당명령을 수행합니다. 정확히 무슨동작을 수행하는지는 잘 모르겠으나 안정적인? 저장소를 추가한다고 하네요
$ sudo add-apt-repository \ "deb [arch=amd64] https://download.docker.com/linux/ubuntu \ $(lsb_release -cs) \ stable"
그 후 해당명령을 통해 도커 엔진을 설치해 줍니다 .
$ sudo apt-get update
$ sudo apt-get install docker-ce docker-ce-cli containerd.io
설치 가능한도커 버전을 확인합니다 .
$ apt-cache madison docker-ce
$ apt-cache madison docker-ce-cli
대충 이런식으로 뜨네요
$ sudo apt-get install docker-ce=<VERSION_STRING> docker-ce-cli=<VERSION_STRING> containerd.io
<VERSION_STRING> 자리에 설치가능한 버전 을 입력해주면됩니다
잘 깔렸는지 버전 확인
$ sudo docker version
국룰인 헬로우 워드를 실행함으로써 정상적으로 작동하는지 확인해줍니다
sudo apt-get install \ apt-transport-https \ ca-certificates \ curl \ gnupg-agent \ software-properties-common curl -fsSL https://download.docker.com/linux/ubuntu/gpg | sudo apt-key add - sudo apt-get update sudo apt-get install docker-ce docker-ce-cli containerd.io sudo apt-get install docker-ce=5:19.03.14~3-0~ubuntu-bionic docker-ce-cli=5:19.03.14~3-0~ubuntu-bionic containerd.io sudo apt-get install docker-compose service docker start
반응형'Linux > Ubuntu' 카테고리의 다른 글
[Ubuntu] Ubuntu 23.04 default source.list (0) 2024.07.05 [Ubuntu] 우분투 인터넷 독립망 구성하기 (0) 2021.12.03 Ubuntu(Linux) 루트 계정 처음시작할때 (활성화) (비밀번호잊었을때) (0) 2020.10.09 1) 우분투 nginx 설치 및 실행 (0) 2020.04.28