Skip to content

Commit

Permalink
misc: add variable JITSI_REPO instead hardcoded jitsi
Browse files Browse the repository at this point in the history
  • Loading branch information
netaskd authored and saghul committed Sep 3, 2019
1 parent 6849b7d commit 2b30ab9
Show file tree
Hide file tree
Showing 9 changed files with 9 additions and 9 deletions.
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ all: build-all
release: tag-all push-all

build:
$(MAKE) BUILD_ARGS=$(BUILD_ARGS) JITSI_RELEASE=$(JITSI_RELEASE) -C $(JITSI_SERVICE) build
$(MAKE) BUILD_ARGS=$(BUILD_ARGS) JITSI_REPO=$(JITSI_REPO) JITSI_RELEASE=$(JITSI_RELEASE) -C $(JITSI_SERVICE) build

tag:
docker tag $(JITSI_REPO)/$(JITSI_SERVICE):latest $(JITSI_REPO)/$(JITSI_SERVICE):$(JITSI_BUILD)
Expand Down
2 changes: 1 addition & 1 deletion base-java/Makefile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
build:
docker build $(BUILD_ARGS) -t jitsi/base-java .
docker build $(BUILD_ARGS) -t $(JITSI_REPO)/base-java .

.PHONY: build
2 changes: 1 addition & 1 deletion base/Makefile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
build:
docker build $(BUILD_ARGS) --build-arg JITSI_RELEASE=$(JITSI_RELEASE) -t jitsi/base .
docker build $(BUILD_ARGS) --build-arg JITSI_RELEASE=$(JITSI_RELEASE) -t $(JITSI_REPO)/base .

.PHONY: build
2 changes: 1 addition & 1 deletion etherpad/Makefile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
build:
docker build $(BUILD_ARGS) -t jitsi/etherpad .
docker build $(BUILD_ARGS) -t $(JITSI_REPO)/etherpad .

.PHONY: build
2 changes: 1 addition & 1 deletion jicofo/Makefile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
build:
docker build $(BUILD_ARGS) -t jitsi/jicofo .
docker build $(BUILD_ARGS) -t $(JITSI_REPO)/jicofo .

.PHONY: build
2 changes: 1 addition & 1 deletion jigasi/Makefile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
build:
docker build $(BUILD_ARGS) -t jitsi/jigasi .
docker build $(BUILD_ARGS) -t $(JITSI_REPO)/jigasi .

.PHONY: build
2 changes: 1 addition & 1 deletion jvb/Makefile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
build:
docker build $(BUILD_ARGS) -t jitsi/jvb .
docker build $(BUILD_ARGS) -t $(JITSI_REPO)/jvb .

.PHONY: build
2 changes: 1 addition & 1 deletion prosody/Makefile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
build:
docker build $(BUILD_ARGS) -t jitsi/prosody .
docker build $(BUILD_ARGS) -t $(JITSI_REPO)/prosody .

.PHONY: build
2 changes: 1 addition & 1 deletion web/Makefile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
build:
docker build $(BUILD_ARGS) -t jitsi/web .
docker build $(BUILD_ARGS) -t $(JITSI_REPO)/web .

.PHONY: build

0 comments on commit 2b30ab9

Please sign in to comment.