Docker - nlpie/nlp-adapt-kube GitHub Wiki

Installation:

Requirements: TODO

MacOS:

  1. brew install docker

RHEL:

  1. sudo yum install docker
  2. systemctl enable docker && systemctl start docker

On each node for each user:

  1. sudo groupadd docker
  2. sudo usermod -aG docker $USER
  3. sudo chown "$USER":"$USER" /home/"$USER"/.docker -R
  4. sudo chmod g+rwx "/home/$USER/.docker" -R
  5. sudo usermod -aG docker $USER

Build Docker Image

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:

  1. docker build -t image_name .

List Docker Images

To list all Docker images in the MiniKube cluster, issue the command:

  1. docker list
⚠️ **GitHub.com Fallback** ⚠️