Gulpfile fixes for CI

This commit is contained in:
Juan Ferrer 2019-01-26 20:30:45 +01:00
parent 69bb8173c0
commit c956ef59d6
1 changed files with 1 additions and 1 deletions

View File

@ -300,7 +300,7 @@ async function docker() {
await execP(`docker build --build-arg STAMP=${stamp} -t salix-db ./services/db`);
let runChown = process.platform != 'linux';
if (argv.runChown) runChown = true;
if (argv['run-chown']) runChown = true;
await execP(`docker run --env RUN_CHOWN=${runChown} -d --name salix-db -p 3306:3306 salix-db`);
if (runChown) await dockerWait();