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
Copy file name to clipboardExpand all lines: docs/docs/how-tos/nebari-local.md
+34-1Lines changed: 34 additions & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -34,7 +34,7 @@ The advantages of using kind are:
34
34
Nebari integrates kind under the hood by using its Terraform provider and a proper `local` deployment method, which grants native OS compatibility with Linux.
35
35
36
36
:::warning
37
-
Currently, Nebari does not support local mode on Windows and macOS.
37
+
Currently, Nebari does not support local mode on Windows.
38
38
:::
39
39
40
40
To use kind, you will also need to install [docker engine](https://docs.docker.com/engine/install/ubuntu/#install-using-the-repository).
@@ -126,6 +126,39 @@ sudo echo "172.18.1.100 <domain>" | sudo tee -a /etc/hosts
126
126
127
127
:::
128
128
129
+
### Exposing container network (for MacOS)
130
+
131
+
Docker for macOS does not expose container networks directly on the MacOS host, for this we will use
132
+
[docker-mac-net-connect](https://github.com/chipmk/docker-mac-net-connect), which lets you connect directly
133
+
to Docker-for-Mac containers via IP address. You can install and start it with following command:
134
+
135
+
```bash
136
+
# Install via Homebrew
137
+
$ brew install chipmk/tap/docker-mac-net-connect
138
+
139
+
# Run the service and register it to launch at boot
0 commit comments