Skip to content

Commit

Permalink
docs: update host-gateway-ip to use daemon.json instead of cli flag
Browse files Browse the repository at this point in the history
Signed-off-by: David Karlsson <[email protected]>
(cherry picked from commit ec0a624)
  • Loading branch information
dvdksn committed Jan 23, 2024
1 parent 950ecd4 commit 4caf4de
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion docs/reference/commandline/dockerd.md
Original file line number Diff line number Diff line change
Expand Up @@ -849,7 +849,9 @@ flag for the dockerd command line interface, or the `host-gateway-ip` key in
the daemon configuration file.

```console
$ dockerd --host-gateway-ip 192.0.2.0
$ cat > /etc/docker/daemon.json
{ "host-gateway-ip": "192.0.2.0" }
$ sudo systemctl restart docker
$ docker run -it --add-host host.docker.internal:host-gateway \
busybox ping host.docker.internal
PING host.docker.internal (192.0.2.0): 56 data bytes
Expand Down Expand Up @@ -1072,6 +1074,7 @@ The following is a full example of the allowed configuration options on Linux:
"fixed-cidr": "",
"fixed-cidr-v6": "",
"group": "",
"host-gateway-ip": "",
"hosts": [],
"proxies": {
"http-proxy": "http://proxy.example.com:80",
Expand Down Expand Up @@ -1181,6 +1184,7 @@ The following is a full example of the allowed configuration options on Windows:
"features": {},
"fixed-cidr": "",
"group": "",
"host-gateway-ip": "",
"hosts": [],
"insecure-registries": [],
"labels": [],
Expand Down

0 comments on commit 4caf4de

Please sign in to comment.