mirror of
https://github.com/maputnik/editor.git
synced 2026-07-12 08:57:26 +00:00
Fix for running within docker.
This commit is contained in:
+4
-3
@@ -25,7 +25,8 @@ exports.config = {
|
|||||||
coloredLogs: true,
|
coloredLogs: true,
|
||||||
bail: 0,
|
bail: 0,
|
||||||
screenshotPath: SCREENSHOT_PATH,
|
screenshotPath: SCREENSHOT_PATH,
|
||||||
host: (isDocker() ? process.env.DOCKER_HOST : "127.0.0.1"),
|
// Note: This is here because @orangemug currently runs Maputnik inside a docker container.
|
||||||
|
host: (isDocker() ? "host.docker.internal" : "0.0.0.0"),
|
||||||
baseUrl: 'http://localhost',
|
baseUrl: 'http://localhost',
|
||||||
waitforTimeout: 10000,
|
waitforTimeout: 10000,
|
||||||
connectionRetryTimeout: 90000,
|
connectionRetryTimeout: 90000,
|
||||||
@@ -45,9 +46,9 @@ exports.config = {
|
|||||||
colors: true
|
colors: true
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
server.listen(testConfig.port, "127.0.0.1", function(err) {
|
server.listen(testConfig.port, (isDocker() ? "0.0.0.0" : "localhost"), function(err) {
|
||||||
if(err) {
|
if(err) {
|
||||||
reject();
|
reject(err);
|
||||||
}
|
}
|
||||||
else {
|
else {
|
||||||
resolve();
|
resolve();
|
||||||
|
|||||||
Reference in New Issue
Block a user