Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

The last command will verify if your docker installation is up-and-running. It will download  the 'hello-world' image from the central Docker image repository, create a container using that image and start that container.

Info
titleRuning docker witout sudoing

In order to be able to run docker and docker-compose commands without sudo it is needed to add current user do docker group:

sudo groupadd docker
sudo gpasswd -a $USER docker

This step may be necessary if we want to use setup scripts (with sudo it is need to set e.g. environment variables for root also)

Creating an OpenNSA image from a Dockerfile

...