Dockerコンテナーテクノロジーにより、コンテナーの迅速なデプロイが可能になります。この記事の目的は、Debian 10BusterLinuxにDockerをインストールすることです。
このチュートリアルでは、次のことを学びます。
- Debian10にDockerをインストールする方法
- Docker管理者権限をユーザーに設定する方法
GNU/Linux上のDockerDebian10バスター
使用されるソフトウェア要件と規則
カテゴリ | 使用する要件、規則、またはソフトウェアバージョン |
---|---|
GNU / LinuxDebian10バスター | |
docker | |
rootまたはsudo を介したLinuxシステムへの特権アクセス コマンド。 | |
# –指定されたLinuxコマンドは、rootユーザーとして直接、またはsudo を使用して、root権限で実行する必要があります。 コマンド$ –特定のLinuxコマンドを通常の非特権ユーザーとして実行する必要があります |
Debian10Busterにdockerをインストールする方法ステップバイステップの説明
- 更新されたソースリスト
Dockerパッケージは、標準のDebian10リポジトリの一部です。実際のDocketインストールを実行する前に、以下のコマンドを実行してパッケージインデックスを更新してください。
# apt update
- Docker.ioパッケージをインストールします
実際のDockerインストールは、
docker.io
のインストールで構成されます。 パッケージ。これは、以下のapt
の実行で実行できます。 コマンド:# apt install docker.io
- Docker管理者権限を持つ特定のユーザーを設定する
この手順はオプションであり、特定のユーザーがroot管理者権限を必要とせずにDocker管理タスクを実行できるようにします。以下の例では、Docker管理者権限をユーザー
linuxconfig
に付与します。 :# usermode -aG docker linuxconfig
- Dockerのインストールをテストする
Dockerの正しいインストールを確認する最も簡単な方法は、サンプルの
hello-world
をデプロイして実行することです。 コンテナ:# docker run hello-world Hello from Docker! This message shows that your installation appears to be working correctly. To generate this message, Docker took the following steps: 1. The Docker client contacted the Docker daemon. 2. The Docker daemon pulled the "hello-world" image from the Docker Hub. (amd64) 3. The Docker daemon created a new container from that image which runs the executable that produces the output you are currently reading. 4. The Docker daemon streamed that output to the Docker client, which sent it to your terminal. To try something more ambitious, you can run an Ubuntu container with: $ docker run -it ubuntu bash Share images, automate workflows, and more with a free Docker ID: https://hub.docker.com/ For more examples and ideas, visit: https://docs.docker.com/get-started/
にアクセスしてください。