Installation and usage guide


‹ Go back to the installation page

Docker installation

In order to use DeepInfer, Docker is required to be installed and configured properly. Here are links for installing Docker CE (community edition) on supported operating systems:

On linux systems make sure to follow the post-installation steps including managing docker as a non-root user.

Once you installed Docker you should validation your installation.

2. Validating Docker Installation

Start a terminal and run the following commands to make sure Docker is installed and configured properly. You should be able to run docker as a non-root user

Test installation

Type the following command in your shell:

$ docker -v

If docker is installed correctly you will see a message like:

Docker version 18.03.1-ce, build 9ee9f40

Test pull and run

First pull the hello-world docker:

$ docker pull hello-world

After pulling is complete run the following command:

$ docker run hello-world

You should see the following output:

Hello from Docker!
This message shows that your installation appears to be working correctly.

.
.
.