vscode-remote-release
vscode-remote-release copied to clipboard
Dev Containers: Possible bug with "appPort" property
In devcontainers.json when I have: "appPort": ["8000:8000"] and I build container, ports are like this:
But when I have
"appPort": [8000] they are like this:
I thought these two settings were doing the same. But actually, bare 8000 number forwards only 127.0.0.1 which won't allow connections from outside of the host machine.
Is it a bug or a feature?