- Navigate to: https://gitforwindows.org/
- Download & install the latest version of Git for Windows.
- This includes git as well as some tools like git bash
- Navigate to: https://docs.docker.com/engine/install/
- Download & install the right docker engine for your operating system.
3. Install your Favorite Terminal (You can skip this step if you already have one installed on your machine)
- Git Bash for example, works well for this if you already installed it in step 1
- In your favorite terminal, clone the repository
git clone <GitHubRepo>
- Navigate into the folder learning_labs
- First, ensure that docker is running and then in your favorite terminal, from the folder learning_labs, run the following command to build the docker image:
docker build . --tag bbitlab
We can remove this step if we publish our image to DockerHub
-
launch our container and mount the learning_labs folder as a volume to access the lab.
docker run -p 8888:8888 -v <full path of the folder 'learning_labs'>:/app bbitlab
-
When the container fully launches, you should have a similar output. You should copy the URL (circled in red) and paste it into your favorite web browser to launch Jupyter Lab.
If you have a similar page displaying in your browser, you are all set and ready to start working on the BBIT Lab.
Thank you!!