From 7bb2211d1d5ebeaaf9024e38f14eeacf514caec1 Mon Sep 17 00:00:00 2001 From: W Beecher Baker Date: Fri, 26 Jul 2024 15:27:43 -0400 Subject: [PATCH] Update README.md --- README.md | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index 6f75cdc..cb21773 100644 --- a/README.md +++ b/README.md @@ -5,10 +5,12 @@ Files & notes for a series of docker tutorials for coworkers. ## Session 1: Run a Jupyter Notebook 1. Getting things working - 1. Everybody run `docker run hello-world` to make sure Docker is installed and working. - 2. `docker run ` such as debian, rocky, alpine, etc. — what happens? - 3. `docker run -it ` — just add `-it`. Better? - 4. Quiz: What does `-it` do? Could check with `docker run --help` or at https://docs.docker.com/reference/. + 1. Start Docker Desktop + 2. Open a terminal — either your built-in terminal or from Docker Desktop itself. + 3. Run `docker run hello-world` to make sure Docker is installed and working. + 4. `docker run ` such as debian, rocky, alpine, etc. — what happens? + 5. `docker run -it ` — just add `-it`. Better? + 6. Quiz: What does `-it` do? Could check with `docker run --help` or at https://docs.docker.com/reference/. 2. Running something useful: Jupyter Notebooks 1. `docker run -p 8888:8888 quay.io/jupyter/datascience-notebook:latest`