Skip to content

Commit

Permalink
Merge pull request #57 from data-catering/polaris
Browse files Browse the repository at this point in the history
Add polaris
  • Loading branch information
pflooky authored Jul 31, 2024
2 parents 1237afb + c5912e9 commit 5d7ba47
Show file tree
Hide file tree
Showing 3 changed files with 15 additions and 0 deletions.
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -136,6 +136,7 @@ POSTGRES_USER=my-user POSTGRES_PASSWORD=my-password ./run.sh postgres
| Database | spanner ||
| Database | sqlite ||
| Data Catalog | marquez ||
| Data Catalog | polaris ||
| Data Catalog | unitycatalog ||
| Data Catalog | amundsen ||
| Data Catalog | datahub ||
Expand Down
3 changes: 3 additions & 0 deletions docker-compose-persist.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -72,6 +72,9 @@ services:
opensearch:
volumes:
- "./data/opensearch/persist:/usr/share/opensearch/data"
polaris:
volumes:
- "./data/polaris/persist/credentials:/tmp/credentials"
postgres-server:
volumes:
- "./data/postgres/persist:/data/postgres"
Expand Down
11 changes: 11 additions & 0 deletions docker-compose.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -720,6 +720,17 @@ services:
ports:
- "9000:9000"
restart: unless-stopped
polaris:
container_name: polaris
healthcheck:
interval: 10s
retries: 5
test: [CMD, curl, "http://localhost:8182/healthcheck"]
timeout: 10s
image: "datacatering/polaris:${POLARIS_VERSION:-1.0.0}"
ports:
- "8181:8181"
- "8182:8182"
postgres:
command: [/bin/bash, -c, /tmp/scripts/init.sh]
container_name: postgres-data
Expand Down

0 comments on commit 5d7ba47

Please sign in to comment.