-
-
Notifications
You must be signed in to change notification settings - Fork 193
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Can't the JULIA_DEPOT_PATH be changed in apps? #910
Comments
We've run into a similar problem. The hard-coded depot path (here) is not writeable in our environment. We want to dynamically create a package from the app so we need to add a writeable depot path. But since Can we change the Cc: @KristofferC |
To retain current behavior, maybe appending to |
You can change the environment on the app or? The one set there is only for starting it up. I must be misunderstanding something. But sure, we could append to it. |
Yeah, we'd prefer to not hard-code environment changes into the app. Basically what happens now is we run:
And in |
Hello,
I am building an app in a docker container and then try to run it via singularity. The app builds successfully but can't run because the
DEPOT_PATH
seems to be hardlinked to the app'sshare
folder. Whether I do:or
JULIA_DEPOT_PATH=/opt ./TargetedEstimation --help # or export JULIA_DEPOT_PATH=/opt
Scratch.jl which I think is supposed to write to the
DEPOT_PATH
seems to be tryiing to append thescratch_usage.toml
in/TargetedEstimation.jl/tmle/share/julia/logs/
.Can I do anything to fix this? Thanks!
Full stacktrace:
The text was updated successfully, but these errors were encountered: