Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add docs for MacOS local setup #454

Open
wants to merge 2 commits into
base: main
Choose a base branch
from
Open
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
add keycloak images link
  • Loading branch information
aktech committed May 8, 2024
commit 16fa986ed6a93b202c2f3d56a365ba0b9e16f5d6
16 changes: 15 additions & 1 deletion docs/docs/how-tos/nebari-local.md
Original file line number Diff line number Diff line change
Expand Up @@ -128,7 +128,7 @@ sudo echo "172.18.1.100 <domain>" | sudo tee -a /etc/hosts

### Exposing container network (for MacOS)

Docker for macOS does not expose container networks directly on the macOS host, for this we will use
Docker for macOS does not expose container networks directly on the MacOS host, for this we will use
[docker-mac-net-connect](https://github.com/chipmk/docker-mac-net-connect), which lets you connect directly
to Docker-for-Mac containers via IP address. You can install and start it with following command:

Expand All @@ -145,6 +145,20 @@ $ sudo brew services start chipmk/tap/docker-mac-net-connect
You can skip this section if you have an x86_64 machine. If you're using Mac M1, then the x86_64 docker images
will not work out of the box. You would need to use images that are built with support for arm as well.

We're building all the docker images for both platforms except external images. The only external image relevant
here is keycloak. You'd need to update the keycloak image for the deployment, which can be done by adding the
override for the keycloak deployment to update the image:

```yaml
security:
keycloak:
initial_root_password: <SANITIZED>
overrides:
image:
repository: quay.io/nebari/keycloak
tag: sha-b4a2d1e
```

## Deploying Nebari

With the `nebari-config.yaml` configuration file now created, Nebari can be deployed for the first time with:
Expand Down
Loading