Install Docker CE on Ubuntu 17.10 Artful Aardvark

Docker doesn't yet have a release file for Ubuntu 17.10 (it should be coming soon though). As such Docker CE can be installed from the Zesty package as follows:

sudo apt-get install apt-transport-https ca-certificates curl software-properties-common

Followed by:

curl -fsSL https://download.docker.com/linux/ubuntu/gpg | sudo apt-key add -

Followed by:

sudo apt-key fingerprint 0EBFCD88

Followed by:

sudo add-apt-repository "deb [arch=amd64] https://download.docker.com/linux/ubuntu zesty stable"

Followed by:

sudo apt-get update

Followed by:

sudo apt-get install docker-ce

And finally:

sudo usermod -aG docker $USER

Many thanks to levsthings