Decision
Open the sources.list file as admin.
sudo emacs /etc/apt/sources.list
Find these two lines:
deb [arch=amd64] https://download.docker.com/linux/ubuntu artful stable
And change the word artful to zesty on both lines. After the change, they should look like this:
deb [arch=amd64] https://download.docker.com/linux/ubuntu zesty stable
The problem is fixed, now install Docker CE with:
sudo apt-get update && sudo apt-get install docker-ce
Explanation
The problem is that at the time of this writing, the release for Ubuntu 17.10 Artful Aardvark is not available in Download Docker . Therefore, you must use the release file for Ubuntu 17.04 (zesty).
Wesam
source share