Skip to content

Latest commit

 

History

History
17 lines (12 loc) · 666 Bytes

README.md

File metadata and controls

17 lines (12 loc) · 666 Bytes

The root of the experiments is src/. Here we use Docker to create a Linux development environment.

Getting Started

  1. The Dockerfile present in this directory describes the specific Docker image that we'll be using as our base. We need to build this image and give it a name (e.g. linux-devbox) by either entering this command or running ./build:
$ docker build -t linux-devbox .
  1. Once the image is prepared, we run a container from it by entering the following command or running ./enter:
$ docker run -ti -v $(pwd)/src:/src linux-devbox

Sources