fix: update README to include additional environment variables for Dockerfile

This commit is contained in:
2026-03-06 02:08:20 +07:00
parent 3316e6f790
commit 5b4dd8a3d1

View File

@@ -42,9 +42,12 @@ services:
- dev-tools:/tools:ro - dev-tools:/tools:ro
``` ```
Add `/tools/shims` and `/tools/bin` to `PATH` in your container's Dockerfile: Add in your container's Dockerfile:
```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}" ENV PATH="/tools/shims:/tools/bin:${PATH}"
``` ```