2016-02-19 82 views
0

我試圖在debian wheezy上安裝docker(我想在我的服務器上運行一些nodejs應用程序..)。我已經按照說明here步驟,但是當我執行碼頭安裝失敗,對debian wheezy沒有滿足的依賴關係

apt-get install docker-engine 

我得到以下錯誤:

The following packages have unmet dependencies: 
docker-engine : Depends: init-system-helpers (>= 1.18~) but it is not installable 
       Recommends: cgroupfs-mount but it is not installable or 
          cgroup-lite but it is not installable 
       Recommends: yubico-piv-tool (>= 1.1.0~) but it is not installable 
E: Unable to correct problems, you have held broken packages. 

是與碼頭工人和Debian我真的不知道什麼造成這個錯誤總小白。

我下面的內核:

[email protected]:/home/xxx# uname -r 
3.10.23-xxxx-std-ipv6-64 

問候,

回答

1

解決

這github上的問題here幫我解決此安裝問題。

正如mentionned由「lidel」(2015年10月13日),我必須使用反向移植安裝的init系統的幫助程序...

我剛剛添加下面的一行在結束的/ etc /易/ sources.list.d/docker.list

deb http://http.debian.net/debian wheezy-backports main 

然後

apt-get update && apt-get install init-system-helpers 
apt-get install docker-engine 

,現在,它的工作原理

相關問題