Skip to content

Commit

Permalink
temp
Browse files Browse the repository at this point in the history
  • Loading branch information
holashchand committed Aug 16, 2024
1 parent fe045ba commit 258c009
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 4 deletions.
5 changes: 3 additions & 2 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ publish-builds:
if [ -n "$$(docker images -q local/$$image:latest)" ]; then \
docker tag local/$$image:latest $(PACKAGE_REPO)$$image:$(BUILD_VERSION); \
echo publish: $(PACKAGE_REPO)$$image:$(BUILD_VERSION); \
#docker push $(PACKAGE_REPO)$$image:$(BUILD_VERSION); \
docker push $(PACKAGE_REPO)$$image:$(BUILD_VERSION); \
else \
echo "Skipping image local/$$image:latest -> does not exist locally"; \
fi \
Expand All @@ -48,7 +48,8 @@ pull-builds:
@for image in $(IMAGES); \
do \
echo pull: $(PACKAGE_REPO)$$image:$(BUILD_VERSION); \
#docker pull $(PACKAGE_REPO)$$image:$(BUILD_VERSION) \
docker pull $(PACKAGE_REPO)$$image:$(BUILD_VERSION); \
docker tag $(PACKAGE_REPO)$$image:$(BUILD_VERSION) $(PACKAGE_REPO)$$image:latest; \
done

test:
Expand Down
2 changes: 1 addition & 1 deletion docker-compose-v1.yml
Original file line number Diff line number Diff line change
Expand Up @@ -321,7 +321,7 @@ services:
timeout: 10s
retries: 10
metrics:
image: locanbabu/sunbird-rc-metrics
image: locanbabu/sunbird-rc-metrics:${RELEASE_VERSION}
environment:
CLICK_HOUSE_URL: clickhouse:9000
CLICKHOUSE_DATABASE: default
Expand Down
2 changes: 1 addition & 1 deletion docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -409,7 +409,7 @@ services:
timeout: 10s
retries: 10
metrics:
image: locanbabu/sunbird-rc-metrics
image: locanbabu/sunbird-rc-metrics:${RELEASE_VERSION}
environment:
CLICK_HOUSE_URL: clickhouse:9000
CLICKHOUSE_DATABASE: default
Expand Down

0 comments on commit 258c009

Please sign in to comment.