글
오라클 클라우드에서 VM instance를 생성했고 포트를 열었으며 도메인을 연결했습니다.
we've created VM instnaces, opned ports and connect domain to our service.
그럼 이제 우리가 만든 어플리케이션을 인스턴스에게 전달해주어야하는데요.
we have to deliver our application that you want to deploy on to our instnace.
저의 어플리케이션들은 컨테이너화시켜 도커 허브에 올려놓았고 인스턴스에서 그 이미지들을 다운받아
i've uploaded my application's docker images to docker-hub.
i will download those images
컨테이너 오케스트레이션 플렛폼으로는 도커 스웜을 사용할 예정입니다.
i will use docker swarm as container orchestration.
도커스웜에 대해 docs.docker.com/engine/swarm/ 여기를 참고하시구요
you can have detail about docker swarm from above link.
일단 인스턴스에 도커를 깔아야겠죠?
we need to install docker on our instance.
일단 인스턴스가 깡통이기 때문에 sudo -s를 입력 후 관리자상태에서 apt-get update && apt-get upgrade로 최신화시켜줍시다.
initial ubuntu is quite empty thus run apt-get update && apt-get upgrade command as administartion ( sudo -s)
자 완료되었다면 docs.docker.com/engine/install/ubuntu/에 접속합니다.
after that go to the link above.
$ sudo apt-get remove docker docker-engine docker.io containerd runc
run above command
명령어로 이전에 올드버전 도커가 설치되어있다면 삭제해주시고
to delete old docker if you had previous.
일단 도커를 설치하는 방법이 3가지 정도 있는데 그중에 제일 무난한 방법인
there are several ways to install docker but we will use most common way of install docker
도커 리포지터리로 설치하는 방법을 진행합니다.
installing using the repository.
$ 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-key fingerprint 0EBFCD88 를 입력하시고
type sudo apt-key fingerprint 0EBFCD88
9DC8 5822 9FC7 DD38 854A E2D8 8D81 803C 0EBF CD88와 일치한다면 다음 스텝으로 넘어갑니다.
9DC8 5822 9FC7 DD38 854A E2D8 8D81 803C 0EBF CD88 is matched witn your finger print then move on to next step
sudo add-apt-repository \ "deb [arch=amd64] https://download.docker.com/linux/ubuntu \ $(lsb_release -cs) \ stable"
도커 엔진을 설치할 차례입니다.
it time to install docker engine
sudo apt-get install docker-ce docker-ce-cli containerd.io
그 다음 docker -v
type docker -v to check docker engine installed
도커 다운로드 여부를 파악해주시고
sudo docker run hello-world
위와 같이 출력된다면 자 도커 설치가 끝났습니다.!
if you can see above output then docker is installed well!
'흥미진진냉각소 ♫' 카테고리의 다른 글
퀄컴이 짱개 파운드리 SMIC를 손절한다면 어떤일이 벌어질지 알아보자 (0) | 2020.09.30 |
---|---|
할리우드 톱배우 톰크루즈의 극한직업에 대해.araboja (0) | 2020.09.29 |
뱀파이어 전설은 어디서 시작되었을까? (블라드 3세) (0) | 2020.09.28 |
ADHD 뇌에 대한 6가지 사실.txt (0) | 2020.09.28 |
일본이 땃다는 노벨상들이 뭔지 Arabozi (0) | 2020.09.28 |
RECENT COMMENT