0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 3 years have passed since last update.

【Docker】 Dockerインストール

Last updated at Posted at 2021-08-04

私は日本就職を目指して、勉強している韓国人大学生です。
もし、内容の中で間違った表現や言葉などがあれば、書き込みをしてください。

#Dockerというのは?

  • Linuxコンテナを簡単に生成したり、管理できるようにサポートする__コンテナ型仮想化プログラム__
  • アプリケーションの開発・構築・テスト・配布等を迅速に可能
  • 私が感じた長所
    1. Back-Endサーバーの開発・構築するとき、複数のバージョンを使ったテスト可能
    2. Docker Composeで__複数のコンテナを1つのセットで簡単に管理__
    3. イメージを活用して、バージョン管理、ロールバック等を簡単に可能
    4. Reverse Proxyで__WEBとAPIサーバーを単一サーバーで運営__
実務でCI/CDパイプライン構築を通して、持続的な配布環境をよく構築

#Dockerインストール

###Dockerリポジトリを設定

$ sudo apt-get update

# 패키지 다운로드
$ sudo apt-get install apt-transport-https ca-certificates curl gnupg-agent software-properties-common

# Docker GPG 키 추가
$ sudo curl -fsSL https://download.docker.com/linux/ubuntu/gpg | sudo apt-key add -

# Docker GPG 키 등록 확인
$ sudo apt-key fingerprint 0EBFCD88

# Docker 저장소 등록
$ sudo add-apt-repository "deb [arch=amd64] https://download.docker.com/linux/ubuntu $(lsb_release -cs) stable"

###Dockerエンジンインストール

$ sudo apt-get update

# Docker最新バージョンインストール
$ sudo apt-get install docker-ce docker-ce-cli containerd.io 

# インストール結果確認
$ docker -v

###Dockerコンポーズインストール

$ sudo curl -L "https://github.com/docker/compose/releases/download/1.25.3/docker-compose-$(uname -s)-$(uname -m)" -o /usr/local/bin/docker-compose
$ sudo chmod +x /usr/local/bin/docker-compose
$ docker-compose --version
0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?