From 8c7ee1d4bd621f8527f4e0d963b1d2cff6f90376 Mon Sep 17 00:00:00 2001 From: Jason Garber <“jgarber@users.noreply.github.com”> Date: Fri, 3 Jul 2020 17:55:32 -0400 Subject: [PATCH 1/2] Fix docker run instructions Was missing the option to bind mount the volume. Without `-v`, Docker was interpreting the pwd as the image name. --- README.markdown | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.markdown b/README.markdown index 53e7d70..6d3026d 100644 --- a/README.markdown +++ b/README.markdown @@ -9,7 +9,7 @@ Building and running the app locally is easiest achieved by using [docker](https://docker.com). 1. Build container using `docker build -t ppwm .` -2. Run container via `docker run --rm -it "$(pwd):/app" -p 3000:3000 ppwm` +2. Run container via `docker run --rm -it -v "$(pwd):/app" -p 3000:3000 ppwm` 3. Visit `localhost:3000` to see the app running # LICENSE From 2c79bd74c1bde2f10d48bc3ab3305ace47264c89 Mon Sep 17 00:00:00 2001 From: Jason Garber <“jgarber@users.noreply.github.com”> Date: Fri, 3 Jul 2020 17:56:00 -0400 Subject: [PATCH 2/2] Add a new pairing book --- app/views/welcome/_resources.md | 1 + 1 file changed, 1 insertion(+) diff --git a/app/views/welcome/_resources.md b/app/views/welcome/_resources.md index 6c5cf5c..970adcd 100644 --- a/app/views/welcome/_resources.md +++ b/app/views/welcome/_resources.md @@ -3,6 +3,7 @@ getting started? Here are some links to talks, guides, and tools for successfully pair-programming beyond your office. ### Guides & Talks +- Practical Pair Programming is a brief book by Jason Garber. - Remote Pairing: Collaborative Tools for Distributed Development is a book by Joe Kutner. - Sam Livingston-Gray