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
Once the above command is ran, Your gitpod instance can be accessed at `172-17-17-172.nip.io`. [nip.io](https://nip.io/) is just wildcard DNS for local addresses, So all
14
-
of this is local, and cannot be accessed over the internet.
13
+
Once the above command starts running and the pods are ready (can be checked by running `docker exec gitpod kubectl get pods`),
14
+
The URL to access your gitpod instance can be retrieved by running
15
+
16
+
```
17
+
docker inspect -f '{{range.NetworkSettings.Networks}}{{.IPAddress}}{{end}}' gitpod | sed -r 's/[.]+/-/g' | sed 's/$/.nip.io/g'
18
+
```
19
+
20
+
[nip.io](https://nip.io/) is just wildcard DNS for local addresses, So all off this is local, and cannot be accessed over the internet.
0 commit comments