centos7を勉強するためWindows10にDockerで環境を構築しているんですが
Dockerコンテナ内でDockerをインストールするとうまくサービスが起動できなくて困ってます
以下のように環境を構築したんですがなにかおかしな点はありますでしょうか?
1.番号リスト DockerでCentOS7のコンテナを起動
docker pull centos:centos7 docker run -d --privileged --name centos7 centos:centos7 /sbin/init docker exec -it centos7 /bin/bash
2.CentOS7コンテナ環境でDockerをインストール・サービスを起動
yum update yum install -y yum-utils device-mapper-persistent-data lvm2 yum-config-manager --add-repo https://download.docker.com/linux/centos/docker-ce.repo yum install -y docker-ce docker-ce-cli containerd.io systemctl start docker
Dockerのサービスを起動すると以下のようなエラーが出てしまいました
Job for docker.service failed because start of the service was attempted too often. See "systemctl status docker.service" and "journalctl -xe" for details. To force a start use "systemctl reset-failed docker.service" followed by "systemctl start docker.service" again.
どなたか解決策をご存じの方いたら教えて下さい
See "systemctl status docker.service" and "journalctl -xe" for details.
とあるとおり、上記コマンド実行すると詳細が表示されます。
systemctl status docker.service と journalctl -xe を実行し、結果を質問に追記してください
回答1件
あなたの回答
tips
プレビュー