Fix IP address check command

Quentin McGaw (desktop)
2021-09-09 08:03:44 -04:00
parent 87e79048a7
commit e449395733
+1 -1
@@ -7,7 +7,7 @@ Once your container is up and running, you may want to test your connection is c
Assuming your container is called `gluetun`, run: Assuming your container is called `gluetun`, run:
```sh ```sh
docker run --rm --network=container:gluetun alpine:3.14 apk add wget && wget -qO- https://ipinfo.io docker run --rm --network=container:gluetun alpine:3.14 sh -c "apk add wget && wget -qO- https://ipinfo.io"
``` ```
in order to obtain the VPN IP address and ensure the connection is working. in order to obtain the VPN IP address and ensure the connection is working.