Saya memiliki masalah lain termasuk "Tidak Dapat" di Ubuntu 16.04. Ini adalah skrip bash untuk menyelesaikan masalah di mesin saya.
#!/bin/bash
sudo apt update
sudo rm /var/lib/apt/lists/*
sudo rm /var/cache/apt/*.bin
VERSION-NAME=$(lsb_release -c)
y=$(echo $VERSION-NAME | awk '{print $2}')
echo $y
cd /etc/apt/sources.list.d
touch docker_test.list
echo "deb https://apt.dockerproject.org/repo ubuntu-$y main" > docker_test.list
sudo apt-get install linux-image-extra-$(uname -r)
sudo apt-get update
sudo apt-get install docker.io
Saya memiliki masalah yang berbeda ketika saya harus menghapus Docker pada saat itu. Ini adalah skrip bash ( sumber ) untuk mesin saya.
# For unistall in Ubuntu
sudo apt-get purge docker.io
# This will erase all your container images
sudo rm -rf /var/lib/docker
# This will erase all docker configs
sudo rm -rf /etc/docker/
sudo apt-get purge docker.io