Fix: Use named volume for Kestra temp directory#794
Merged
wrussell1999 merged 1 commit intoDataTalksClub:mainfrom Feb 6, 2026
Merged
Fix: Use named volume for Kestra temp directory#794wrussell1999 merged 1 commit intoDataTalksClub:mainfrom
wrussell1999 merged 1 commit intoDataTalksClub:mainfrom
Conversation
… issues Changes: - Replace bind mount `/tmp/kestra-wd:/tmp/kestra-wd` with named volume `kestra_tmp:/tmp/kestra-wd` - Add `kestra_tmp` to volumes definition Reason: - Fixes "Permission denied" error when Kestra tries to execute Python interpreters - Bind mounts on Windows don't preserve Linux execute permissions - Named volumes are cross-platform compatible and avoid host filesystem permission conflicts
There was a problem hiding this comment.
Pull request overview
This pull request fixes a cross-platform compatibility issue with Kestra's temporary directory by replacing a bind mount with a named Docker volume. The change specifically addresses "Permission denied" errors on Windows where bind mounts don't preserve Linux execute permissions.
Changes:
- Added
kestra_tmpnamed volume definition to the volumes section - Replaced bind mount
/tmp/kestra-wd:/tmp/kestra-wdwith named volumekestra_tmp:/tmp/kestra-wd
💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
Member
wrussell1999
approved these changes
Feb 6, 2026
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Changes:
/tmp/kestra-wd:/tmp/kestra-wdwith named volumekestra_tmp:/tmp/kestra-wdkestra_tmpto volumes definitionReason: