We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1dc226e commit 684f0c6Copy full SHA for 684f0c6
docs/data_engineering/data_lakehouse/unity_catalog.md
@@ -0,0 +1,18 @@
1
+# Unity Catalog
2
+
3
+## Getting started (Docker)
4
5
+1. Clone repository:
6
+ ```sh
7
+ git clone https://github.com/unitycatalog/unitycatalog/tree/main
8
+ ```
9
+2. Start server:
10
11
+ docker build -t unity_catalog_server .
12
+ docker run -it -p 8080:8080 unity_catalog_server
13
14
+3. Start UI:
15
16
+ docker build -t unity_catalog_ui --build-arg PROXY_HOST=YOUR_IP_ADDRESS ui/.
17
+ docker run -it -p 3000:3000 unity_catalog_ui
18
0 commit comments