Versions Compared

Key

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

...

Environment

  • Ubuntu desktop
  • enable Linux routing (required for Docker networking?)
  • edit /etc/environment
  • .pgpass
  • .opennsa-cli
  • .opennsa-credentials

...

sudo apt-get update
sudo apt-get install \
linux-image-extra-$(uname -r) \
linux-image-extra-virtual
sudo apt-get install \
apt-transport-https \
ca-certificates \
curl \
software-properties-common
sudo curl -fsSL https://download.docker.com/linux/ubuntu/gpg | sudo apt-key add -
sudo add-apt-repository \
"deb [arch=amd64] https://download.docker.com/linux/ubuntu \
$(lsb_release -cs) \
stable"
sudo apt-get update
sudo apt-get install docker-ce
sudo docker run hello-world

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.

Creating an OpenNSA image from a Dockerfile

...