Skip to content

Commit

Permalink
fix(docker): fix ability to use non-default reg (datahub-project#7250)
Browse files Browse the repository at this point in the history
  • Loading branch information
david-leifker authored and Eric Yomi committed Feb 8, 2023
1 parent 6b79169 commit 9956f21
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions docker/mysql-setup/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ plugins {
apply from: "../../gradle/versioning/versioning.gradle"

ext {
docker_registry = 'acryldata'
docker_registry = rootProject.ext.docker_registry == 'linkedin' ? 'acryldata' : docker_registry
docker_repo = 'datahub-mysql-setup'
docker_dir = 'mysql-setup'
}
Expand Down Expand Up @@ -38,4 +38,4 @@ task cleanLocalDockerImages {
rootProject.ext.cleanLocalDockerImages(docker_registry, docker_repo, "v${version}")
}
}
dockerClean.finalizedBy(cleanLocalDockerImages)
dockerClean.finalizedBy(cleanLocalDockerImages)

0 comments on commit 9956f21

Please sign in to comment.