Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions cloudypad.sh
Original file line number Diff line number Diff line change
Expand Up @@ -154,6 +154,10 @@ run_cloudypad_docker() {
"PULUMI_BACKEND_URL" "PULUMI_CONFIG_PASSPHRASE"
)

# Pin PULUMI_HOME inside ~/.cloudypad so the plugin cache (provider binaries) persists
# across container runs without requiring a separate ~/.pulumi mount.
cmd+=" -e PULUMI_HOME=$HOME/.cloudypad/pulumi-home"

for env_var in "${env_vars[@]}"; do
if [ -n "${!env_var}" ]; then
cmd+=" -e $env_var=${!env_var}"
Expand Down