Docker : インストール2021/05/13 |
コンテナー型仮想化ソフトウェア Docker をインストールします。
|
|
[1] | Docker をインストールします。 |
root@dlp:~#
root@dlp:~# apt -y install docker.io docker version Client: Version: 20.10.2 API version: 1.41 Go version: go1.13.8 Git commit: 20.10.2-0ubuntu2 Built: Tue Mar 2 05:51:34 2021 OS/Arch: linux/amd64 Context: default Experimental: true Server: Engine: Version: 20.10.2 API version: 1.41 (minimum version 1.12) Go version: go1.13.8 Git commit: 20.10.2-0ubuntu2 Built: Tue Mar 2 05:45:16 2021 OS/Arch: linux/amd64 Experimental: false containerd: Version: 1.4.4-0ubuntu1 GitCommit: runc: Version: spec: 1.0.2-dev GitCommit: docker-init: Version: 0.19.0 GitCommit: |
[2] | Ubuntu の公式イメージファイルをダウンロードし、コンテナーから [echo] を実行します。 |
# 公式イメージダウンロード root@dlp:~# docker pull ubuntu
Using default tag: latest latest: Pulling from library/ubuntu 345e3491a907: Pull complete 57671312ef6f: Pull complete 5e9250ddb7d0: Pull complete Digest: sha256:cf31af331f38d1d7158470e095b132acd126a7180a54f263d386da88eb681d93 Status: Downloaded newer image for ubuntu:latest docker.io/library/ubuntu:latest # コンテナーで echo 実行 root@dlp:~# docker run ubuntu /bin/echo "Welcome to the Docker World!" Welcome to the Docker World! |
[3] | コンテナー環境の対話型シェルセッションに接続するには以下のように [-i] オプションと [-t] オプションを付加します。 コンテナー環境内で [exit] すると、ホストのコンソールに戻ってコンテナー環境のプロセスは終了します。 |
root@dlp:~# docker run -it ubuntu /bin/bash root@b978f06ea24b:/# # コンテナーのコンソール root@b978f06ea24b:/# uname -a Linux b978f06ea24b 5.11.0-16-generic #17-Ubuntu SMP Wed Apr 14 20:12:43 UTC 2021 x86_64 x86_64 x86_64 GNU/Linux root@b978f06ea24b:/# exit exit root@dlp:~# # 戻った
|
[4] | コンテナー環境の対話型シェルセッションからコンテナー環境のプロセスを残したまま、ホストのコンソールに戻るには [Ctrl+p], [Ctrl+q] キーを押下します。 |
root@dlp:~#
docker run -it ubuntu /bin/bash root@c19fff428bea:/# root@dlp:~# # Ctrl+p, Ctrl+q でホストに戻る
# docker プロセス表示 root@dlp:~# docker ps CONTAINER ID IMAGE COMMAND CREATED STATUS PORTS NAMES c19fff428bea ubuntu "/bin/bash" 17 seconds ago Up 16 seconds charming_carson # 再びコンテナー環境に接続 root@dlp:~# docker attach c19fff428bea root@c19fff428bea:/# # ホスト側からコンテナー環境のプロセスを終了する root@dlp:~# docker kill c19fff428bea c19fff428bea root@dlp:~# docker ps CONTAINER ID IMAGE COMMAND CREATED STATUS PORTS NAMES |
Sponsored Link |