Shinyproxy with docker-toolbox on Windows

I am trying to configure shinyproxy to run on a different IP to docker. I have docker-toolbox installed which creates a docker daemon on 192.168.99.100 and I want to run shinyproxy on the windows host (for development) on 192.168.99.1
I have tried various combinations of parameters in the application.yml file but I get:
ERROR 7072 — [ XNIO-2 task-1] io.undertow.request : UT005023: Exception handling request to /app/01_hello
I get the login etc on port 8080 in my browser but the returned message from the 01_hello example is:
Failed to start container: java.util.concurrent.ExecutionException: javax.ws.rs.ProcessingException: java.net.SocketException: Software caused connection abort: recv failed

Any suggestions or configuration help would be mightily appreciated.
FWIW I have shinyproxy configured and adapted on RHEL7: great app!

Solving my own post eventually. Very obvious but there were many false trails. In the end simply change the docker section in the application.yml to:
cert-path: /Users/[user]/.docker/machine/machines/default
url: https://192.168.99.100:2376
host: 192.168.99.100
port-range-start: 20000

1 Like

Many thanks for sharing the solution, @John_James