12 lines
297 B
YAML
12 lines
297 B
YAML
version: '3'
|
|
services:
|
|
dbt-bq-dtc:
|
|
build:
|
|
context: .
|
|
target: dbt-bigquery
|
|
image: dbt/bigquery
|
|
volumes:
|
|
- .:/usr/app
|
|
- ~/.dbt/:/root/.dbt/
|
|
- ~/.google/credentials/google_credentials.json:/.google/credentials/google_credentials.json
|
|
network_mode: host |