Skip to content

Commit

Permalink
test: rootless dind
Browse files Browse the repository at this point in the history
  • Loading branch information
mikhail-klimko committed Nov 15, 2024
1 parent c6b84a9 commit 64cd2d2
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions lib/logger.js
Original file line number Diff line number Diff line change
Expand Up @@ -44,8 +44,8 @@ class Logger {
dockerSockPath = fs.existsSync('//./pipe/codefresh/docker_engine')
? '//./pipe/codefresh/docker_engine' : '//./pipe/docker_engine';
} else {
dockerSockPath = fs.existsSync('/var/run/codefresh/docker.sock')
? '/var/run/codefresh/docker.sock' : '/var/run/docker.sock';
dockerSockPath = fs.existsSync('/var/run/docker.sock')
? '/var/run/docker.sock' : '/run/user/1000/docker.sock';
}

this.docker = new Docker({
Expand Down
2 changes: 1 addition & 1 deletion service.yaml
Original file line number Diff line number Diff line change
@@ -1 +1 @@
version: 1.11.7
version: 1.11.8

0 comments on commit 64cd2d2

Please sign in to comment.