From 5b4dd8a3d1508c7f138408a47fd6e4b723c8ac11 Mon Sep 17 00:00:00 2001 From: Cesar Flores Date: Fri, 6 Mar 2026 02:08:20 +0700 Subject: [PATCH] fix: update README to include additional environment variables for Dockerfile --- README.md | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 5d311e1..a471888 100644 --- a/README.md +++ b/README.md @@ -42,9 +42,12 @@ services: - dev-tools:/tools:ro ``` -Add `/tools/shims` and `/tools/bin` to `PATH` in your container's Dockerfile: +Add in your container's Dockerfile: ```dockerfile +ENV MISE_DATA_DIR="/tools" +ENV MISE_CONFIG_DIR="/tools/config" +ENV MISE_CACHE_DIR="/tools/cache" ENV PATH="/tools/shims:/tools/bin:${PATH}" ```