You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When using this with docker-in-docker,
destinations won't be reachable from containers running in a Codespace
if you are using "dockerComposeFile": "docker-compose.yml" in devcontainer.json.
The workaround is to set network_mode: host in your docker-compose.yml.
A good test is running $ route -n, if you don't see this ⬇️ in the parent container then it won't work.
172.17.0.0 0.0.0.0 255.255.0.0 U 0 0 0 docker0
The text was updated successfully, but these errors were encountered:
When using this with
docker-in-docker
,destinations won't be reachable from containers running in a Codespace
if you are using
"dockerComposeFile": "docker-compose.yml"
indevcontainer.json
.The workaround is to set
network_mode: host
in yourdocker-compose.yml
.A good test is running
$ route -n
, if you don't see this ⬇️ in the parent container then it won't work.The text was updated successfully, but these errors were encountered: