mirage
mirage copied to clipboard
Bugfix/custom url is not working on docker
If you try to use Mirage with docker it will fail because:
- In
Mirage.start (runner.rb:14)it put default port. After that inMirage::Clientthis if elsif(client.rb:15)will never use custom url because at first it check if there is port and if it could find itlocalhostis used. - In
Runner.startit useMirage.running?(options)-(runner.rb:91)withHashtype param. Because of that it will always try to find if app is running aslocalhostnot u custom url.
I tried to fix this error with backward compatibility. Classes interface stay almost this same.
CI is broken