Nimble Installation

Nimble requires docker-compose, you can install the latest version from: https://docs.docker.com/compose/install/

user@host:~$ sudo curl -L "https://github.com/docker/compose/releases/download/1.28.2/docker-compose-$(uname -s)-$(uname -m)" -o /usr/local/bin/docker-compose
user@host:~$ sudo chmod +x /usr/local/bin/docker-compose

A valid license file is required to run nimble. If you would like to request a trial license, visit https://megh.com/

By default, the license.json file must be placed in the same directory where docker-compose is run. Alternatively, you may update the docker-compose*.yaml files to mount the license from another path.

  • CPU

    • Pull

      user@host:~$ docker-compose pull
      

      Pulls the latest meghcomputing/nimble image

    • Start

      user@host:~$ docker-compose up [-d]
      

      Start the nimble container, use -d to run in detached mode.

    • Stop

      user@host:~$ docker-compose down
      

      Bring down the nimble container and cleanup any docker artifacts.

  • iGPU

    • Pull

      user@host:~$ docker-compose -f docker-compose-igpu.yaml pull
      

      Pulls the latest meghcomputing/nimble image

    • Start

      user@host:~$ docker-compose -f docker-compose-igpu.yaml up [-d]
      

      Start the nimble container, use -d to run in detached mode.

    • Stop

      user@host:~$ docker-compose -f docker-compose-igpu.yaml down
      

      Bring down the nimble container and cleanup any docker artifacts.