Course
llm-zoomcamp
Question
How do I fix the Docker error "mounts denied: The path /tmp/... is not shared from the host"?
Answer
Add the path to Docker File Sharing (Recommended)
You need to explicitly tell Docker Desktop that it is allowed to access your host's /tmp directory.
- Open Docker Desktop.
- Click the Gear icon (Settings) in the top right corner.
- Navigate to Resources > File Sharing.
- Click the + (Add) button.
- Enter /tmp (or the specific path like /tmp/kestra-wd) and press Enter.
- Click Apply & restart.
Once the changes are applied, go to the terminal and rerun the docker compose command (docker compose up -d) to stand up Kestra
Checklist
Course
llm-zoomcamp
Question
How do I fix the Docker error "mounts denied: The path /tmp/... is not shared from the host"?
Answer
Add the path to Docker File Sharing (Recommended)
You need to explicitly tell Docker Desktop that it is allowed to access your host's /tmp directory.
Once the changes are applied, go to the terminal and rerun the docker compose command (docker compose up -d) to stand up Kestra
Checklist