LinuxシステムでDockerをオフラインでインストールする

1.環境の説明:一部のデプロイメント環境では、ネットワークまたはその他の理由によりオンラインデプロイメントが不可能です。現時点では、dockerをオフラインでインストールする必要があります。

2.インストール手順:

1.dockerインストールファイルを取得します。正式なアドレスは次のとおりです。

https://download.docker.com/linux/static/stable/x86_64/docker-19.03.9.tgz

2.ダウンロードしたインストールファイルを解凍します。コマンドは次のとおりです。

tar zxvf docker-19.03.9.tgz

3.解凍後のすべてのファイル(dockerフォルダー)を/ usr / binディレクトリー(必須)に移動します。コマンドは次のとおりです。

cp -p docker/* /usr/bin

4.dockerをサービスとして登録します。手順は次のとおりです。

①次のコマンドを入力します。

vi /usr/lib/systemd/system/docker.service

②iをクリックすると、以下が表示されます-----挿入----編集状態に入ります

次のコンテンツをdocker.serviceにコピーし、次のようにコンテンツをコピーします。

[Unit]
Description=Docker Application Container Engine
Documentation=http://docs.docker.com
After=network.target docker.socket
[Service]
Type=notify
EnvironmentFile=-/run/flannel/docker
WorkingDirectory=/usr/local/bin
ExecStart=/usr/bin/dockerd \
                -H tcp://0.0.0.0:4243 \
                -H unix:///var/run/docker.sock \
                --selinux-enabled=false \
                --log-opt max-size=1g
ExecReload=/bin/kill -s HUP $MAINPID
# Having non-zero Limit*s causes performance problems due to accounting overhead
# in the kernel. We recommend using cgroups to do container-local accounting.
LimitNOFILE=infinity
LimitNPROC=infinity
LimitCORE=infinity
# Uncomment TasksMax if your systemd version supports it.
# Only systemd 226 and above support this version.
#TasksMax=infinity
TimeoutStartSec=0
# set delegate yes so that systemd does not reset the cgroups of docker containers
Delegate=yes
# kill only the docker process, not all processes in the cgroup
KillMode=process
Restart=on-failure
[Install]
WantedBy=multi-user.target

コピーが完了したら、escキーをクリックし、次のように入力します。wq!を保存して、強制終了します。

以下のコマンドを実行して、上記のコピー内容が正しいか確認してください。

cat /usr/lib/systemd/system/docker.service

5.docker構成ファイルをリロードします。コマンドは次のとおりです。

$ systemctl daemon-reload

6.dockerを起動します。コマンドは次のとおりです。

$ systemctl start docker

7.dockerを起動するように設定します。コマンドは次のとおりです。

$ systemctl enable docker

8.dockerが正常にインストールされているかどうかを確認します。コマンドは次のとおりです。

$ docker version

 

おすすめ

転載: blog.csdn.net/joyksk/article/details/112186830