From f68dab9f669c0b54b91cb40081178b493b3ad246 Mon Sep 17 00:00:00 2001 From: Marcello DeSales Date: Thu, 23 Nov 2023 08:46:42 -0800 Subject: [PATCH] :memo: :recycle: add docker engine link + fix docker run example --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 7e8dcf76..83e3b756 100644 --- a/README.md +++ b/README.md @@ -14,13 +14,13 @@ If you are interested in contributing to the development of mdBook, check out th ## Container > **NOTE**: You need to have docker installed -> https://docs.docker.com/language/golang/run-containers/ +> https://docs.docker.com/engine/install/ 1. Locate a local directory with md files 2. Quickly run a docker container with the current version: ```console -docker run -ti -v $(pwd)/src:/src -p 3000:3000 rust-lang/mdbook +docker run -ti -v $(pwd):/mdbook -p 3000:3000 rust-lang/mdbook ``` ## License