diff options
author | Sheogorath | 2019-09-03 09:26:08 +0300 |
---|---|---|
committer | GitHub | 2019-09-03 09:26:08 +0300 |
commit | f08fcd30fbe859fa636f494bb949e00ab2cff095 (patch) | |
tree | c04aa012f15e375aafc6ccd00eadba3b447d3967 /lib | |
parent | 6755d1b9897984d45001fd4aa1209854a5d69da6 (diff) | |
parent | 326b38dff9367b5d94ce28f00ae2482f763e008a (diff) |
Merge pull request #167 from dargmuesli/fix/docker-secret-path
Docker Secrets: Correct Source Path
Diffstat (limited to '')
-rw-r--r-- | lib/config/dockerSecret.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/config/dockerSecret.js b/lib/config/dockerSecret.js index 50bf7fe2..69e0de36 100644 --- a/lib/config/dockerSecret.js +++ b/lib/config/dockerSecret.js @@ -3,7 +3,7 @@ const fs = require('fs') const path = require('path') -const basePath = path.resolve('/var/run/secrets/') +const basePath = path.resolve('/run/secrets/') function getSecret (secret) { const filePath = path.join(basePath, secret) |