Skip to content
Open
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
4 changes: 2 additions & 2 deletions dbt-bigquery/docker/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -24,13 +24,13 @@ docker build --tag <your_image_name> \
```

### Examples:
To build an image named "my-dbt" that supports Snowflake using the latest releases:
To build an image named "my-dbt" that supports BigQuery using the latest releases:
```shell
cd dbt-core/docker
docker build --tag my-dbt --target dbt-bigquery .
```

To build an image named "my-other-dbt" that supports Snowflake using the adapter version 1.0.0b1:
To build an image named "my-other-dbt" that supports BigQuery using the adapter version 1.0.0b1:
```shell
cd dbt-core/docker
docker build \
Expand Down
4 changes: 2 additions & 2 deletions dbt-redshift/docker/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -24,13 +24,13 @@ docker build --tag <your_image_name> \
```

### Examples:
To build an image named "my-dbt" that supports Snowflake using the latest releases:
To build an image named "my-dbt" that supports Redshift using the latest releases:
```shell
cd dbt-core/docker
docker build --tag my-dbt --target dbt-redshift .
```

To build an image named "my-other-dbt" that supports Snowflake using the adapter version 1.0.0b1:
To build an image named "my-other-dbt" that supports Redshift using the adapter version 1.0.0b1:
```shell
cd dbt-core/docker
docker build \
Expand Down
4 changes: 2 additions & 2 deletions dbt-spark/docker/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -23,13 +23,13 @@ docker build --tag <your_image_name> \
```

### Examples:
To build an image named "my-dbt" that supports Snowflake using the latest releases:
To build an image named "my-dbt" that supports Spark using the latest releases:
```shell
cd dbt-core/docker
docker build --tag my-dbt --target dbt-spark .
```

To build an image named "my-other-dbt" that supports Snowflake using the adapter version 1.0.0b1:
To build an image named "my-other-dbt" that supports Spark using the adapter version 1.0.0b1:
```shell
cd dbt-core/docker
docker build \
Expand Down
Loading