install_docker.sh failed for me because socat wasn't installed. Add it
to this script since it expects it to be there.
Change-Id: Ic55f5e38de1b38bdd37407b7bec533d4c3eff2a9
| ... | ... |
@@ -38,7 +38,7 @@ curl https://get.docker.io/gpg | sudo apt-key add - |
| 38 | 38 |
install_package python-software-properties && \ |
| 39 | 39 |
sudo sh -c "echo deb $DOCKER_APT_REPO docker main > /etc/apt/sources.list.d/docker.list" |
| 40 | 40 |
apt_get update |
| 41 |
-install_package --force-yes lxc-docker=${DOCKER_PACKAGE_VERSION}
|
|
| 41 |
+install_package --force-yes lxc-docker=${DOCKER_PACKAGE_VERSION} socat
|
|
| 42 | 42 |
|
| 43 | 43 |
# Start the daemon - restart just in case the package ever auto-starts... |
| 44 | 44 |
restart_service docker |