- Generate SSH key using ED25519 algorithm.
- Windows 11 running Windows Subsystem for Linux (WSL) version 2 with Debian 11
- NVidia Windows 11 driver installed
- No need to install NVidia Linux driver within WSL (source)
- Open the Debian terminal (e.g., launch Debian from Windows menu)
- Perform distribution update/upgrade
The purpose of this Gist is to provide a quick list of common Docker commands. This information was pulled from the summary at the bottom of Part 2 of the official Docker tutorial: https://docs.docker.com/get-started/part2
Run "friendlyname" mapping port 4000 to 80
$ docker run -p 4000:80 friendlyhello
Same thing, but in detached mode
This gist explains how to run the Jupyter Notebooks server and Python kernel within a Docker container instead of installing it locally.
Run the following command where <local_notebooks_dir>
is the directory where you store
your Jupyter Notebooks on your local machine. This directory will be exposed within the
Jypter Notebooks web client.