--- tags: Docker title: Getting started --- # Overview This document summarizes how to get started. ## Pre-req. - Docker installed (see here to [download docker](https://docs.docker.com/get-docker/)) ## Docker. First off you need docker to access the containers. 1. Download the docker environment here: https://virginia.app.box.com/folder/165347824142?s=mmhimih7a9e4d5mk7yhn43ea4eyc5z3i 2. Run `source build.sh` in the directory This should essentially install all docker containers. To run the docker container, use the following command: ``` docker run -it --rm -v ${PWD}:/code/decompiler py3.8 /bin/bash ``` The command should open container and link your current folder to the docker container. Within the container run `cd decompiler` to find all files and folders in the directory from which you instantiated the docker container. :::info `py3.8` will open container with python 3.8 environment. You can change that in command to `py2.7`, `py3.6`, and `py3.7` for the respective python version. :::