Installer docker hors ligne sous le système Linux

1. Description de l'environnement: dans certains environnements de déploiement, le déploiement en ligne n'est pas possible en raison du réseau ou pour d'autres raisons. À ce stade, docker doit être installé hors ligne;

2. Étapes d'installation:

1. Obtenez le fichier d'installation de docker, l'adresse officielle est la suivante:

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

2. Décompressez le fichier d'installation téléchargé, la commande est la suivante:

tar zxvf docker-19.03.9.tgz

3. Déplacez tous les fichiers (dossier docker) après décompression vers le répertoire / usr / bin (obligatoire), la commande est la suivante:

cp -p docker/* /usr/bin

4. Enregistrez le docker en tant que service, les étapes sont les suivantes:

①Entrez la commande suivante:

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

②Cliquez sur i, ce qui suit apparaît ----- insérer ---- entrer l'état d'édition

Copiez le contenu suivant dans docker.service, copiez le contenu comme suit:

[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

Une fois la copie terminée, cliquez sur la touche esc et entrez: wq! Pour enregistrer et forcer la sortie;

Exécutez la commande suivante pour vérifier si le contenu copié ci-dessus est correct

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

5. Rechargez le fichier de configuration du docker, la commande est la suivante:

$ systemctl daemon-reload

6. Démarrez docker, la commande est la suivante:

$ systemctl start docker

7. Configurez docker pour démarrer, la commande est la suivante:

$ systemctl enable docker

8. Vérifiez si le docker est installé avec succès, la commande est la suivante:

$ docker version

 

Je suppose que tu aimes

Origine blog.csdn.net/joyksk/article/details/112186830
conseillé
Classement