angular-cn/aio/aio-builds-setup/docs/vm-setup--set-up-docker.md
George Kalpakas f4fcb0c54c docs(docs-infra): update preview server setup instructions (#36837)
I recently went through the process of setting up a preview server VM
again and updated the instructions and references based on the latest
docs for Debian, Docker, Google Compute Engine, etc.

PR Close #36837
2020-05-05 17:46:46 -07:00

767 B

VM Setup - Set up docker

Install docker

Official installation instructions: https://docs.docker.com/engine/install Example:

Debian (buster):

  • sudo apt-get update
  • sudo apt-get install -y apt-transport-https ca-certificates curl gnupg-agent software-properties-common
  • curl -fsSL https://download.docker.com/linux/debian/gpg | sudo apt-key add -
  • sudo apt-key fingerprint 0EBFCD88
  • sudo add-apt-repository "deb [arch=amd64] https://download.docker.com/linux/debian $(lsb_release -cs) stable"
  • sudo apt-get update
  • sudo apt-get -y install docker-ce docker-ce-cli containerd.io

Start the docker

  • sudo service docker start

Test docker

  • sudo docker run hello-world

Start docker on boot

  • sudo systemctl enable docker