Skip to content

Commit

Permalink
add keycloak images link
Browse files Browse the repository at this point in the history
  • Loading branch information
aktech committed May 8, 2024
1 parent 80b51d8 commit 16fa986
Showing 1 changed file with 15 additions and 1 deletion.
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

0 comments on commit 16fa986

Please sign in to comment.