Docker - nlpie/nlp-adapt-kube GitHub Wiki
Requirements: TODO
MacOS:
brew install docker
RHEL:
sudo yum install docker
systemctl enable docker && systemctl start docker
On each node for each user:
sudo groupadd docker
sudo usermod -aG docker $USER
sudo chown "$USER":"$USER" /home/"$USER"/.docker -R
sudo chmod g+rwx "/home/$USER/.docker" -R
sudo usermod -aG docker $USER
Each process within NLP-ADAPT-Kube is containerized using a Docker image.
To build an image you first need to download the source to the appropriate directory.
Next, build the Docker image within the directory:
docker build -t image_name .
To list all Docker images in the MiniKube cluster, issue the command:
docker list