mirror of
https://github.com/a-nyx/maputnik-with-pmtiles.git
synced 2024-11-10 05:07:45 +01:00
Don't assume docker for mac.
This commit is contained in:
parent
84f3970730
commit
a346d757fd
1 changed files with 1 additions and 1 deletions
|
@ -26,7 +26,7 @@ exports.config = {
|
|||
bail: 0,
|
||||
screenshotPath: SCREENSHOT_PATH,
|
||||
// Note: This is here because @orangemug currently runs Maputnik inside a docker container.
|
||||
host: (isDocker() ? "host.docker.internal" : "0.0.0.0"),
|
||||
host: process.env.DOCKER_HOST || "0.0.0.0",
|
||||
baseUrl: 'http://localhost',
|
||||
waitforTimeout: 10000,
|
||||
connectionRetryTimeout: 90000,
|
||||
|
|
Loading…
Reference in a new issue