From 75b2796ad599433e16c44fc8779039f408ac4717 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Arne=20J=C3=B8rgensen?= Date: Fri, 7 Feb 2025 16:15:07 +0100 Subject: [PATCH] Improve mac user documentation - Make sure no containers are running while doing the one-time setup. - Make sure a stray `mkcert` folder is deleted if one was created during previous runs --- .markdownlint.yml | 3 +++ README.md | 5 +++-- 2 files changed, 6 insertions(+), 2 deletions(-) create mode 100644 .markdownlint.yml diff --git a/.markdownlint.yml b/.markdownlint.yml new file mode 100644 index 0000000..8589cec --- /dev/null +++ b/.markdownlint.yml @@ -0,0 +1,3 @@ +--- +MD013: + code_blocks: false diff --git a/README.md b/README.md index 46e289e..63fade9 100644 --- a/README.md +++ b/README.md @@ -31,10 +31,11 @@ volumes: > [!TIP] > -> Mac users should then do (one time only): +> Mac users should do the following (one time only) while no +> containers are running: > > ```console -> mkdir -p ~/.local/share && ln -s "$(mkcert -CAROOT)" ~/.local/share` +> mkdir -p ~/.local/share && find ~/.local/share -name mkcert -type d -delete && ln -s "$(mkcert -CAROOT)" ~/.local/share` > ``` > > If you haven't installed mkcert yet, you can do so with Homebrew: