Skip to content

Latest commit

 

History

History
18 lines (16 loc) · 517 Bytes

DOCKER_README.md

File metadata and controls

18 lines (16 loc) · 517 Bytes

DOCKER INSTALLATION README

  1. Install docker
  2. Using the 'Dockerfile' provided by this repo, create a docker container permanently running in background, which you can bash into. To do so, run
docker build . -t "uitb-sim2vr"
docker images
docker run -it --gpus all -d --name uitb uitb-sim2vr /bin/bash
  1. Ensure that the docker container is running in background by calling
docker ps -a
  1. To bash into the running docker container, run:
docker exec -it uitb /bin/bash