Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
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
6 changes: 3 additions & 3 deletions 02_lakefs_enterprise/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,16 +15,16 @@ cd lakeFS-samples/02_lakefs_enterprise

### **Run a lakeFS Enterprise server**

Login to [Treeverse Dockerhub](https://hub.docker.com/u/treeverse) by using the granted token so lakeFS Enterprise proprietary image can be retrieved. [Contact Sales](https://lakefs.io/contact-sales/) to get the token for lakeFS Enterprise:
Login to [Treeverse Dockerhub](https://hub.docker.com/u/treeverse) by using the granted token so lakeFS Enterprise proprietary image can be retrieved. [Contact Sales](https://lakefs.io/contact-sales/) to get the token and license file for lakeFS Enterprise:

```bash
docker login -u externallakefs
```

Run following command to provision a lakeFS Enterprise server as well as MinIO for your object store, plus Jupyter:
Copy the lakeFS license file to "lakeFS-samples/02_lakefs_enterprise" folder, then change lakeFS license file name and installation ID in the following command and run the command to provision a lakeFS Enterprise server as well as MinIO for your object store, plus Jupyter:

```bash
docker compose up
LAKEFS_LICENSE_FILE_NAME=license-org-name-installation-id.token LAKEFS_INSTALLATION_ID=installation-id docker compose up
```

Once the stack's up and running, open the Jupyter Notebook (http://localhost:8894) and check out the [catalog of sample notebooks](../00_notebooks/00_index.ipynb) to explore lakeFS.
Expand Down
4 changes: 4 additions & 0 deletions 02_lakefs_enterprise/docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -40,6 +40,10 @@ services:
- LAKEFS_DATABASE_POSTGRES_CONNECTION_STRING=postgres://lakefs:lakefs@postgres/postgres?sslmode=disable
- LAKEFS_AUTH_UI_CONFIG_RBAC=internal
- LAKEFS_FEATURES_ICEBERG_CATALOG=true
- LAKEFS_LICENSE_PATH=/tmp/lakefs/$LAKEFS_LICENSE_FILE_NAME
- LAKEFS_INSTALLATION_FIXED_ID=$LAKEFS_INSTALLATION_ID
volumes:
- $PWD:/tmp/lakefs
entrypoint: ["/bin/sh", "-c"]
command:
- |
Expand Down