Skip to content

Commit 5f03e66

Browse files
committed
feat: make build_project_image configurable
1 parent 30d9450 commit 5f03e66

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

estela-api/config/settings/base.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -268,9 +268,9 @@
268268
PROJECT_BUCKET = env("BUCKET_NAME_PROJECTS")
269269

270270
# Project image name
271-
BUILD_PROJECT_IMAGE = "{}/estela-build-project".format(
271+
BUILD_PROJECT_IMAGE = env("BUILD_PROJECT_IMAGE", default="{}/estela-build-project".format(
272272
urlparse(REGISTRY_HOST).netloc or REGISTRY_HOST
273-
)
273+
))
274274

275275
# Test image name
276276
TEST_DOCKER_IMAGE = "{}/estela-project-demo:test".format(

0 commit comments

Comments
 (0)