1
0
mirror of synced 2026-01-02 21:02:43 -05:00
Files
airbyte/airbyte-integrations/bases/base-normalization/docker-compose.build.yaml
Simon Späti 2bbc4f6f83 🎉 New Destination: DuckDB (#17494)
This is the first version of the DuckDB destination. There are potential edge cases that still need to be taken care of. But looking forward to your feedback.
2023-02-07 11:33:10 +01:00

67 lines
1.8 KiB
YAML

version: "3.7"
services:
normalization:
image: airbyte/normalization:${VERSION}
build:
dockerfile: Dockerfile
context: .
labels:
io.airbyte.git-revision: ${GIT_REVISION}
normalization-mssql:
image: airbyte/normalization-mssql:${VERSION}
build:
dockerfile: mssql.Dockerfile
context: .
labels:
io.airbyte.git-revision: ${GIT_REVISION}
normalization-mysql:
image: airbyte/normalization-mysql:${VERSION}
build:
dockerfile: mysql.Dockerfile
context: .
labels:
io.airbyte.git-revision: ${GIT_REVISION}
normalization-oracle:
image: airbyte/normalization-oracle:${VERSION}
build:
dockerfile: oracle.Dockerfile
context: .
labels:
io.airbyte.git-revision: ${GIT_REVISION}
normalization-clickhouse:
image: airbyte/normalization-clickhouse:${VERSION}
build:
dockerfile: clickhouse.Dockerfile
context: .
labels:
io.airbyte.git-revision: ${GIT_REVISION}
normalization-snowflake:
image: airbyte/normalization-snowflake:${VERSION}
build:
dockerfile: snowflake.Dockerfile
context: .
labels:
io.airbyte.git-revision: ${GIT_REVISION}
normalization-redshift:
image: airbyte/normalization-redshift:${VERSION}
build:
dockerfile: redshift.Dockerfile
context: .
labels:
io.airbyte.git-revision: ${GIT_REVISION}
normalization-tidb:
image: airbyte/normalization-tidb:${VERSION}
build:
dockerfile: tidb.Dockerfile
context: .
labels:
io.airbyte.git-revision: ${GIT_REVISION}
normalization-duckdb:
image: airbyte/normalization-duckdb:${VERSION}
build:
dockerfile: duckdb.Dockerfile
context: .
labels:
io.airbyte.git-revision: ${GIT_REVISION}