Skip to content

Commit

Permalink
feat: update
Browse files Browse the repository at this point in the history
  • Loading branch information
kuroweb committed Jan 8, 2024
1 parent c0e66a5 commit 76b0cc6
Showing 1 changed file with 6 additions and 5 deletions.
11 changes: 6 additions & 5 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@
# config
#

project := price-monitoring
registry := registry.local:5000
tag_suffix := $(shell git rev-parse --short HEAD)

Expand All @@ -24,7 +25,7 @@ push-all: push-backend push-tor push-playwright push-bff push-frontend
# backend
#

backend_tag := $(registry)/price-monitoring-backend:$(tag_suffix)
backend_tag := $(registry)/$(project)-backend:$(tag_suffix)

build-backend:
docker build \
Expand All @@ -38,7 +39,7 @@ push-backend:
# tor
#

tor_tag := $(registry)/price-monitoring-backend-tor:$(tag_suffix)
tor_tag := $(registry)/$(project)-backend-tor:$(tag_suffix)

build-tor:
docker build \
Expand All @@ -52,7 +53,7 @@ push-tor:
# playwright
#

playwright_tag := $(registry)/price-monitoring-backend-playwright:$(tag_suffix)
playwright_tag := $(registry)/$(project)-backend-playwright:$(tag_suffix)

build-playwright:
docker build \
Expand All @@ -66,7 +67,7 @@ push-playwright:
# bff
#

bff_tag := $(registry)/price-monitoring-bff:$(tag_suffix)
bff_tag := $(registry)/$(project)-bff:$(tag_suffix)

build-bff:
docker build \
Expand All @@ -80,7 +81,7 @@ push-bff:
# frontend
#

frontend_tag := $(registry)/price-monitoring-frontend:$(tag_suffix)
frontend_tag := $(registry)/$(project)-frontend:$(tag_suffix)

build-frontend:
docker build \
Expand Down

0 comments on commit 76b0cc6

Please sign in to comment.