From 13ac1f4ed11ea89a0699127f76879c1b50338950 Mon Sep 17 00:00:00 2001
From: "Peter J. Keleher" <keleher@cs.umd.edu>
Date: Wed, 4 Sep 2024 20:42:34 -0400
Subject: [PATCH] auto

---
 assign1a.md | 9 +++++++--
 1 file changed, 7 insertions(+), 2 deletions(-)

diff --git a/assign1a.md b/assign1a.md
index fdd89b1..a96491a 100644
--- a/assign1a.md
+++ b/assign1a.md
@@ -43,8 +43,13 @@ You don't have to use the "hints" if you don't want to; there might
 be simpler ways to solve the questions.
 
 ### Testing using SQLTesting.py
-Build (`docker build --rm -t 424 .`) and run (`docker run -it -v $(pwd):/424 424`) 
-the container as before, then `cd /424` (inside the container). 
+Build and run a container as before:
+- bash: `docker run -it -v $(pwd):/424 424`
+- tcsh: ``docker run -it -v `pwd`:/424 424``.
+- PowerShell: `docker run -it -v "${PWD}:/424" 424`. You might have to install WSL 2, and for
+ this powershell will have to be running as administrator as well.
+- windows CMD: `docker run -it -v "%cd%:/424" 424`. The above caveats might apply as well.
+and you should have your files in `/424`.
 
 You will be writing a series of queries to implement the prompts in
 `queries.py`. Your answers (i.e., SQL queries) should be added to
-- 
GitLab