Estoy tratando de instalar Docker en un Debian Wheezy (quiero ejecutar algunas aplicaciones de Nodejs en mi servidor...). He seguido los pasos descritos aquí, pero cuando ejecuto
apt-get install docker-engineObtuve el siguiente error:
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.Siendo un novato total con Docker y Debian, realmente no sé qué está causando este error.
debajo de mi núcleo:
root@xxx:/home/xxx# uname -r 3.10.23-xxxx-std-ipv6-64Saludos,
resuelto
Este problema de github aquí me ayudó a resolver este problema de instalación.
Como lo mencionó 'lidel' (13 de octubre de 2015), tengo que usar instalaciones de backport de init-system-helpers ...
Acabo de agregar la siguiente línea al final de /etc/apt/sources.list.d/docker.list
deb http://http.debian.net/debian wheezy-backports mainy luego
apt-get update && apt-get install init-system-helpers apt-get install docker-enginey ahora funciona