web-dev-qa-db-ja.com

Ubuntu 17.10にDockerをインストールできません

そのため、dockerをインストールするのに丸一日かかりました。これは私が取得し続けるエラーです。 Dockerの公式アプローチを使用し、Digital Oceanインストールガイドも試しました。

Setting up docker-ce (18.04.0~ce~3-0~ubuntu) ...
Job for docker.service failed because the control process exited with error code.
See "systemctl  status docker.service" and "journalctl  -xe" for details.
invoke-rc.d: initscript docker, action "start" failed.
● docker.service - Docker Application Container Engine
   Loaded: loaded (/lib/systemd/system/docker.service; enabled; vendor preset: enabled)
   Active: activating (auto-restart) (Result: exit-code) since Thu 2018-04-19 17:33:13 GMT; 10ms ago
     Docs: https://docs.docker.com
  Process: 6283 ExecStart=/usr/bin/dockerd -H fd:// (code=exited, status=1/FAILURE) ## i suspect this line in service file
 Main PID: 6283 (code=exited, status=1/FAILURE)
      CPU: 201ms

Apr 19 17:33:13 sav-subsystems systemd[1]: docker.service: Unit entered failed state.
Apr 19 17:33:13 sav-subsystems systemd[1]: docker.service: Failed with result 'exit-code'.
dpkg: error processing package docker-ce (--configure):
 subprocess installed post-installation script returned error exit status 1
Errors were encountered while processing:
 docker-ce
E: Sub-process /usr/bin/dpkg returned an error code (1)

再起動してエラーをジャーナリングした後、私はこれを得ました->

-- Unit docker.socket has begun starting up.
Apr 19 17:37:30 sav-subsystems systemd[1]: Listening on Docker Socket for the API.
-- Subject: Unit docker.socket has finished start-up
-- Defined-By: systemd
-- Support: http://www.ubuntu.com/support
-- 
-- Unit docker.socket has finished starting up.
-- 
-- The start-up result is done.
Apr 19 17:37:30 sav-subsystems systemd[1]: docker.service: Start request repeated too quickly.
Apr 19 17:37:30 sav-subsystems systemd[1]: Failed to start Docker Application Container Engine.
-- Subject: Unit docker.service has failed
-- Defined-By: systemd
-- Support: http://www.ubuntu.com/support
-- 
-- Unit docker.service has failed.
-- 
-- The result is failed.
Apr 19 17:37:30 sav-subsystems systemd[1]: docker.socket: Unit entered failed state.
Apr 19 17:37:30 sav-subsystems systemd[1]: docker.service: Unit entered failed state.
Apr 19 17:37:30 sav-subsystems systemd[1]: docker.service: Failed with result 'exit-code'.

また、debianパッケージをダウンロードしてインストールしましたが、失敗しました。

2
saviour123

このページの手順を使用してインストールできました: https://Gist.github.com/levsthings/0a49bfe20b25eeadd61ff0e204f50088

Sudo apt-get update
Sudo apt-get install apt-transport-https ca-certificates curl software-properties-common
curl -fsSL https://download.docker.com/linux/ubuntu/gpg | Sudo apt-key add -
Sudo apt-key fingerprint 0EBFCD88

Sudo add-apt-repository "deb [Arch=AMD64] https://download.docker.com/linux/ubuntu zesty stable"

Sudo apt-get update
Sudo apt-get install docker-ce
1
George Udosen

Docker -ceがインストールされ、サービスが実行されているかどうかを確認できます..複数のインストールを試行すると、このタイプのエラーがスローされる場合があります。その場合は、 このチュートリアル から次の手順をアンインストールしてインストールしてください。

基本的に、次のコマンドを実行します-

  1. 最初に依存関係をインストールします

     Sudo apt install apt-transport-https ca-certificates curl software-properties-common
    
  2. 公式DockerリポジトリのGPGキーをシステムに追加します。

    curl -fsSL https://download.docker.com/linux/ubuntu/gpg | Sudo apt-key add -
    
  3. 以下のコマンドを使用して、sources.list.dのDockerリポジトリをAPT sourcesに追加します

    Sudo add-apt-repository "deb [Arch=AMD64] 
    https://download.docker.com/linux/ubuntu $(lsb_release -cs) stable Edge"
    
  4. dockerリポジトリからDockerをインストールできるかどうかを確認します

    apt-cache policy docker-ce
    
  5. 最後に、以下のコマンドでDocker CEパッケージをインストールします

    Sudo apt-get install -y docker-ce
    

これで、Docker-CEがインストールされました。インストールされているdocker-ceのバージョンを確認して、インストールを確認できます。

docker --version
1