User's Manual

6.2. Prerequisites Software Installation
6.2.1. Install Docker Engine
To install Docker Engine on Ubuntu server you can follow the step describe on the following
web site: https://docs.docker.com/engine/install/ubuntu/
To summarize the following SSH commands have to be executing on a server terminal:
Update the apt package index and install packages to allow apt to use a repository
over HTTPS:
$ sudo apt-get update
$ sudo apt-get install \
apt-transport-https \
ca-certificates \
curl \
gnupg-agent \
software-properties-common
Add Docker’s official GPG key:
$ curl -fsSL https://download.docker.com/linux/ubuntu/gpg | sudo apt-key add -
Set up the stable repository:
$ sudo add-apt-repository \
"deb [arch=amd64] https://download.docker.com/linux/ubuntu \
$(lsb_release -cs) \
stable"
Install Docker Engine:
$ sudo apt-get install docker-ce docker-ce-cli containerd.io
You can test the installation with the following ssh command on the server:
$ sudo docker run hello-world
ACOEM | ATD-300/ATD-301 | User Manual FW 1.0.0.4 50