* Add new destination-tidb * support sync * Add normalization-tidb * fix failed tests * Add unnest marco * fmt * Add new destination-tidb * support sync * Add normalization-tidb * fix failed tests * Add unnest marco * fmt * fmt * fix integration test * Update docs/integrations/destinations/tidb.md Co-authored-by: Xiang Zhang <angwerzx@126.com> * Update doc * Update doc * Update doc * bump normalization version * update normalization changelog * run format * add dest def * generat spec Co-authored-by: Xiang Zhang <angwerzx@126.com> Co-authored-by: Marcos Marx <marcosmarxm@users.noreply.github.com> Co-authored-by: marcosmarxm <marcosmarxm@gmail.com>
60 lines
1.6 KiB
YAML
60 lines
1.6 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}
|