Skip to content

Commit 2729b1e

Browse files
authored
Merge pull request #15 from OnGridSystems/polybase_integration
Polybase integration
2 parents eb5ebb6 + 2cd4ee4 commit 2729b1e

File tree

6 files changed

+1234
-0
lines changed

6 files changed

+1234
-0
lines changed

docker-compose.yml

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -80,6 +80,24 @@ services:
8080
args:
8181
REACT_APP_API_HOST: '${REACT_APP_API_HOST}'
8282
restart: on-failure
83+
84+
polybase_worker:
85+
image: polybase_worker
86+
build:
87+
context: ./polybase_integration
88+
dockerfile: Dockerfile
89+
environment:
90+
DB_USER: '${DB_USER}'
91+
DB_HOST: '${DB_HOST}'
92+
DB_NAME: '${DB_NAME}'
93+
DB_PASSWORD: '${DB_PASSWORD}'
94+
DB_PORT: 5433
95+
POLYBASE_NAMESPACE: '${POLYBASE_NAMESPACE}'
96+
COLLECTION_NAME: '${POLYBASE_COLLECTION_NAME}'
97+
TABLE_NAME: '${TABLE_NAME}'
98+
restart: on-failure
99+
depends_on:
100+
- api_db
83101

84102
client:
85103
build: ./graph/client

0 commit comments

Comments
 (0)