Skip to content

Set up Local Docker VMMS

Yashas Kumar edited this page Sep 9, 2015 · 4 revisions

Introduction

This is a guide to set up Tango to run jobs in a local Docker container. If you have yet to set up Tango itself, please see the guide on Setting up Tango first.

Instructions

  1. Install docker on host machine by following instructions on the docker installation page. Ensure docker is running by doing a docker ps.

  2. Build base Docker image from root Tango directory.

    $ cd path/to/Tango
    $ docker build -t autograding_image vmms/
    $ docker images autograding_image    # Check if image built
  3. Update VMMS_NAME in config.py.

    VMMS_NAME = "localDocker"
Clone this wiki locally