Skip to content

Commit

Permalink
Revert "have docker-compose.build.yaml to use new docker context (#7696
Browse files Browse the repository at this point in the history
…)" (#7697)

This reverts commit b5af3f1.
  • Loading branch information
cgardens authored Nov 6, 2021
1 parent b5af3f1 commit d84f33a
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 14 deletions.
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/build/docker
context: airbyte-config/init
labels:
io.airbyte.git-revision: ${GIT_REVISION}
db:
platform: linux/amd64
image: airbyte/db:${VERSION}
build:
dockerfile: Dockerfile
context: airbyte-db/lib/build/docker
context: airbyte-db/lib
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/build/docker
context: airbyte-scheduler/app
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/build/docker
context: airbyte-workers
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/build/docker
context: airbyte-server
labels:
io.airbyte.git-revision: ${GIT_REVISION}
webapp:
platform: linux/amd64
image: airbyte/webapp:${VERSION}
build:
dockerfile: Dockerfile
context: airbyte-webapp/build/docker
context: airbyte-webapp
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/build/docker
context: airbyte-migration
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/build/docker
context: airbyte-config/init
labels:
io.airbyte.git-revision: ${GIT_REVISION}
db:
image: airbyte/db:${VERSION}
build:
dockerfile: Dockerfile
context: airbyte-db/lib/build/docker
context: airbyte-db/lib
labels:
io.airbyte.git-revision: ${GIT_REVISION}
scheduler:
image: airbyte/scheduler:${VERSION}
build:
dockerfile: Dockerfile
context: airbyte-scheduler/app/build/docker
context: airbyte-scheduler/app
labels:
io.airbyte.git-revision: ${GIT_REVISION}
worker:
image: airbyte/worker:${VERSION}
build:
dockerfile: Dockerfile
context: airbyte-workers/build/docker
context: airbyte-workers
labels:
io.airbyte.git-revision: ${GIT_REVISION}
server:
image: airbyte/server:${VERSION}
build:
dockerfile: Dockerfile
context: airbyte-server/build/docker
context: airbyte-server
labels:
io.airbyte.git-revision: ${GIT_REVISION}
webapp:
image: airbyte/webapp:${VERSION}
build:
dockerfile: Dockerfile
context: airbyte-webapp/build/docker
context: airbyte-webapp
labels:
io.airbyte.git-revision: ${GIT_REVISION}
migration:
image: airbyte/migration:${VERSION}
build:
dockerfile: Dockerfile
context: airbyte-migration/build/docker
context: airbyte-migration
labels:
io.airbyte.git-revision: ${GIT_REVISION}

0 comments on commit d84f33a

Please sign in to comment.