From bdac4015b99506952a6db0a9f77c893163673169 Mon Sep 17 00:00:00 2001 From: Parker Mossman Date: Fri, 21 Jul 2023 10:42:28 -0700 Subject: [PATCH] Add keycloak and keycloak-setup entries to docker-compose.build.yaml (#7954) --- docker-compose.build.yaml | 14 ++++++++++++++ tools/bin/publish_docker.sh | 4 +++- 2 files changed, 17 insertions(+), 1 deletion(-) diff --git a/docker-compose.build.yaml b/docker-compose.build.yaml index a630fccbd74..1d6e92c9aa4 100644 --- a/docker-compose.build.yaml +++ b/docker-compose.build.yaml @@ -78,3 +78,17 @@ services: context: airbyte-metrics/reporter labels: io.airbyte.git-revision: ${GIT_REVISION} + keycloak: + image: airbyte/keycloak:${VERSION} + build: + dockerfile: Dockerfile + context: airbyte-keycloak + labels: + io.airbyte.git-revision: ${GIT_REVISION} + keycloak-setup: + image: airbyte/keycloak-setup:${VERSION} + build: + dockerfile: Dockerfile + context: airbyte-keycloak-setup + labels: + io.airbyte.git-revision: ${GIT_REVISION} diff --git a/tools/bin/publish_docker.sh b/tools/bin/publish_docker.sh index 77b86088d33..b0d7e4fea6a 100755 --- a/tools/bin/publish_docker.sh +++ b/tools/bin/publish_docker.sh @@ -14,7 +14,9 @@ projectDir=( "server" "temporal" "webapp" - "workers" + "workers", + "keycloak", + "keycloak-setup" ) # Set default values to required vars. If set in env, values will be taken from there.