coder / sail

Deprecated: Instant, pre-configured VS Code development environments.
https://sail.dev
MIT License
629 stars 36 forks source link

How to publish port on host #242

Open ceo0x opened 5 years ago

ceo0x commented 5 years ago

Hello community , how do i open a port for lets say the web app that im developing inside sail ??

lets say i run it using "npm run serve" and i want to access localhost:8000 to see the web being served

how to access this from my browser?

ceo0x commented 5 years ago

Is there any way to use these params on sail? image

gilsdav commented 5 years ago

To keep workflow as close to local development as possible, sail uses docker host networking when possible. That means if your webserver within Sail binds to :8080, it will be accessible from 127.0.0.1:8080 in your browser.

Docker for Mac doesn’t support host networking, so this won’t work when running Sail on a Mac host. A workaround is planned for a future release of Sail.

https://sail.dev/docs/concepts/docker/