このセクションでは、主にUbuntu18.04でのDockerの構成とプッシュの使用法について説明します。
apt
ソースはHTTPSを使用して、ダウンロードプロセス中にソフトウェアが改ざんされないようにします。
したがって、最初にHTTPS送信とCA証明書を使用してパッケージを追加する必要があります。
sudo apt-get update
sudo apt-get install \
apt-transport-https \
ca-certificates \
curl \
software-properties-common
ダウンロードしたソフトウェアパッケージの有効性を確認するには、ソフトウェアソースの「GPG」キーを追加する必要があります
curl -fsSL https://mirrors.ustc.edu.cn/docker-ce/linux/ubuntu/gpg | sudo apt-key add -
aptソースの追加:Dockerソフトウェアソースを source.list
に追加します:
sudo add-apt-repository \
" deb [arch=amd64] https://mirrors.ustc.edu.cn/docker-ce/linux/ubuntu \
$(lsb_release -cs) \
stable"
DockerCEをインストールします
sudo apt-get install docker-ce
DockerCEを起動します
sudo systemctl enable docker
sudo systemctl start docker
docker
コマンドは、Unixソケットを使用してDockerエンジンと通信します。 DockerエンジンのUnixソケットにアクセスできるのは、 root
ユーザーと docker
グループのユーザーのみです。セキュリティ上の理由から、 root
ユーザーはLinuxシステムで直接使用されません。したがって、 docker
を使用する必要があるユーザーを docker
ユーザーグループに追加することをお勧めします。
docker
グループを作成します。
sudo groupadd docker
すでに存在していることを確認してから、操作をフォローアップするように求められる場合があります。
現在のユーザーを docker
グループに追加します。
sudo usermod -aG docker $USER
現在のターミナルを終了し、再度ログインして、Dockerが正しくインストールされているかどうかをテストします。
docker run hello-world
出力は次のとおりです。
( base) light@city:~/myRoute/k8s/app$ docker run hello-world
Unable to find image 'hello-world:latest' locally
latest: Pulling from library/hello-world
1 b930d010525: Pull complete
Digest: sha256:9572f7cdcee8591948c2963463447a53466950b3fc15a247fcad1917ca215a2f
Status: Downloaded newer image for hello-world:latest
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 newcontainerfrom 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/
この手順では、TSLエラーが報告される場合があります。国内のミラーソースを構成するだけです。daemon.jsonが存在しない可能性があります。作成するだけです。
vi /etc/docker/daemon.json
以下を構成します。
{" registry-mirrors":["https://dockerhub.azk8s.cn","https://hub-mirror.c.163.com"]}
サービスを再起動します。
sudo systemctl daemon-reload
sudo systemctl restart docker
まず、DockerHubにアカウントを登録します。
https://hub.docker.com/
上記のhello-worldをアカウントに公開できます。
まず、このミラーがあるかどうかを確認します。
docker image ls
出力:
hello-world latest fce289e99eb9 13 months ago 1.84kB
自分の倉庫にマークを付けます。
docker tag hello-world lightcity/hello-world:v1
自分の倉庫にプッシュします。
docker push lightcity/hello-world:v1
直接これは押し上げられません。最初に以下を実行します。
docker login
次に、もう一度押します。
押し上げて倉庫で見てください
Recommended Posts