From eb8c261df7a077392044420ea2fd5f6c6a36dd88 Mon Sep 17 00:00:00 2001 From: Jacob Kauffmann Date: Wed, 10 Jun 2026 10:20:07 -0600 Subject: [PATCH] (*) docs: fix devcontainer exec commands, add Docker cleanup commands --- README.md | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index cbff990e3..8147b7639 100644 --- a/README.md +++ b/README.md @@ -23,7 +23,13 @@ The book can be viewed and edited on GitHub by going to - Clone the repository using `git`. - From the cloned repository run - `devcontainer up` - - `devcontainer pnpm install` - - `devcontainer pnpm dev` + - `devcontainer exec pnpm install` + - `devcontainer exec pnpm dev` - You may now view the book at `http://localhost:4321/tech-docs` - Edits are made in the `src/content/docs` directory. The server will automatically update + +#### Cleanup + +- When finished editing, run `docker ps` to get the container's ID or name +- To stop the container (for quicker setup next time), run `docker stop ` +- To stop and remove the container (to start fresh next time), `docker rm -f `