-
Notifications
You must be signed in to change notification settings - Fork 1
docker
- If you want to see the list of available docker images pre-built for the CPSwarm project, you need a (free) DockerHub account, (if you don't have it, please visit https:/hub.docker.com/signup, to create it) and you need to send your Docker ID to [email protected] so it can be added to the CPSwarm organisation.
As it may already available, test to see if Docker is installed on your system:
docker -vIdeally you should have at least Docker version 1.13.1. Other information about your Docker configuration may be obtained using:
docker versionAnd:
docker infoIf you do not have Docker installed, follow the guide Get Docker Engine - Community for Ubunt
sudo docker run hello-worldAdd your user to the Docker group
sudo usermod -aG docker $USERActivate the changes to groups in the current terminal
newgrp dockerNote: to activate the changes in the system environment, log out of your session completely and then log back in.
Test Docker Engine again without sudo
docker run hello-worldAfter the installation of Docker, if you want to use the automatic deployment feature provided by the Kubernetes integration, you have to [setup a Kubernetes cluster](kubernetes setup) or just [add your machines](kubernetes add) to an already existing one.