1 1 sudo apt-get update 2 3 2 sudo apt-get install \ 4 apt-transport-https \ 5 ca-certificates \ 6 curl \ 7 software-properties-common 8 9 3 curl -fsSL https://download.docker.com/linux/ubuntu/gpg | sudo apt-key add - 10 11 4 sudo add-apt-repository \ 12 "deb [arch=amd64] https://download.docker.com/linux/ubuntu \ 13 bionic \ 14 edge" 15 16 5 sudo apt-get update 17 18 6 sudo apt-get install docker-ce