Browse Source

fix: update docker configuration file location (#1570)

pull/1609/head
Lukas Frischknecht 4 years ago
committed by GitHub
parent
commit
ee0eb55522
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions
  1. 2
      server/core/config.js

2
server/core/config.js

@ -19,7 +19,7 @@ module.exports = {
} }
if (process.env.dockerdev) { if (process.env.dockerdev) {
confPaths.config = path.join(WIKI.ROOTPATH, `dev/docker-${process.env.DEVDB}/config.yml`)
confPaths.config = path.join(WIKI.ROOTPATH, `dev/containers/config.yml`)
} }
if (process.env.CONFIG_FILE) { if (process.env.CONFIG_FILE) {

Loading…
Cancel
Save