From 7f3d74b83d5db8b7e760dfb0ceea3093a225cc7b Mon Sep 17 00:00:00 2001 From: CrazyMax <1951866+crazy-max@users.noreply.github.com> Date: Fri, 8 Aug 2025 08:26:54 +0200 Subject: [PATCH] docker(install): set missing XDG_RUNTIME_DIR env Signed-off-by: CrazyMax <1951866+crazy-max@users.noreply.github.com> --- src/docker/install.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/docker/install.ts b/src/docker/install.ts index 8df7134..e97c33d 100644 --- a/src/docker/install.ts +++ b/src/docker/install.ts @@ -418,7 +418,7 @@ export class Install { // avoid killing it when the action finishes running. Even if detached, // we also need to run dockerd in a subshell and unref the process so // GitHub Action doesn't wait for it to finish. - `${sudo} env "PATH=$PATH" ${bashPath} << EOF + `${sudo} env "PATH=$PATH" "XDG_RUNTIME_DIR=$XDG_RUNTIME_DIR" ${bashPath} << EOF ( ${cmd} 2>&1 | tee "${this.runDir}/dockerd.log" ) & EOF`, [],