Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

have docker-compose.build.yaml to use new docker context #7696

Merged
merged 1 commit into from
Nov 6, 2021
Merged
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
14 changes: 7 additions & 7 deletions docker-compose.build-m1.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -14,15 +14,15 @@ services:
image: airbyte/init:${VERSION}
build:
dockerfile: Dockerfile
context: airbyte-config/init
context: airbyte-config/init/build/docker
labels:
io.airbyte.git-revision: ${GIT_REVISION}
db:
platform: linux/amd64
image: airbyte/db:${VERSION}
build:
dockerfile: Dockerfile
context: airbyte-db/lib
context: airbyte-db/lib/build/docker
labels:
io.airbyte.git-revision: ${GIT_REVISION}
scheduler:
Expand All @@ -32,7 +32,7 @@ services:
dockerfile: Dockerfile
args:
JDK_VERSION: ${JDK_VERSION}
context: airbyte-scheduler/app
context: airbyte-scheduler/app/build/docker
labels:
io.airbyte.git-revision: ${GIT_REVISION}
worker:
Expand All @@ -43,7 +43,7 @@ services:
args:
ARCH: ${DOCKER_BUILD_ARCH}
JDK_VERSION: ${JDK_VERSION}
context: airbyte-workers
context: airbyte-workers/build/docker
labels:
io.airbyte.git-revision: ${GIT_REVISION}
server:
Expand All @@ -53,15 +53,15 @@ services:
dockerfile: Dockerfile
args:
JDK_VERSION: ${JDK_VERSION}
context: airbyte-server
context: airbyte-server/build/docker
labels:
io.airbyte.git-revision: ${GIT_REVISION}
webapp:
platform: linux/amd64
image: airbyte/webapp:${VERSION}
build:
dockerfile: Dockerfile
context: airbyte-webapp
context: airbyte-webapp/build/docker
labels:
io.airbyte.git-revision: ${GIT_REVISION}
migration:
Expand All @@ -71,6 +71,6 @@ services:
dockerfile: Dockerfile
args:
JDK_VERSION: ${JDK_VERSION}
context: airbyte-migration
context: airbyte-migration/build/docker
labels:
io.airbyte.git-revision: ${GIT_REVISION}
14 changes: 7 additions & 7 deletions docker-compose.build.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -5,48 +5,48 @@ services:
image: airbyte/init:${VERSION}
build:
dockerfile: Dockerfile
context: airbyte-config/init
context: airbyte-config/init/build/docker
labels:
io.airbyte.git-revision: ${GIT_REVISION}
db:
image: airbyte/db:${VERSION}
build:
dockerfile: Dockerfile
context: airbyte-db/lib
context: airbyte-db/lib/build/docker
labels:
io.airbyte.git-revision: ${GIT_REVISION}
scheduler:
image: airbyte/scheduler:${VERSION}
build:
dockerfile: Dockerfile
context: airbyte-scheduler/app
context: airbyte-scheduler/app/build/docker
labels:
io.airbyte.git-revision: ${GIT_REVISION}
worker:
image: airbyte/worker:${VERSION}
build:
dockerfile: Dockerfile
context: airbyte-workers
context: airbyte-workers/build/docker
labels:
io.airbyte.git-revision: ${GIT_REVISION}
server:
image: airbyte/server:${VERSION}
build:
dockerfile: Dockerfile
context: airbyte-server
context: airbyte-server/build/docker
labels:
io.airbyte.git-revision: ${GIT_REVISION}
webapp:
image: airbyte/webapp:${VERSION}
build:
dockerfile: Dockerfile
context: airbyte-webapp
context: airbyte-webapp/build/docker
labels:
io.airbyte.git-revision: ${GIT_REVISION}
migration:
image: airbyte/migration:${VERSION}
build:
dockerfile: Dockerfile
context: airbyte-migration
context: airbyte-migration/build/docker
labels:
io.airbyte.git-revision: ${GIT_REVISION}