The root of the experiments is src/. Here we use Docker to create a Linux development environment.
- 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 .
- 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