aboutsummaryrefslogtreecommitdiff
path: root/bugzilla/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'bugzilla/Makefile')
-rw-r--r--bugzilla/Makefile20
1 files changed, 0 insertions, 20 deletions
diff --git a/bugzilla/Makefile b/bugzilla/Makefile
deleted file mode 100644
index f11a22d..0000000
--- a/bugzilla/Makefile
+++ /dev/null
@@ -1,20 +0,0 @@
1IMAGE=bugzilla:latest
2VERSION=5.1.1
3REPO=575365190010.dkr.ecr.us-west-2.amazonaws.com
4
5all:
6 docker build --build-arg=bz_version=$(VERSION) -t $(IMAGE) .
7
8all-no-cache:
9 docker build --no-cache --build-arg=bz_version=$(VERSION) -t $(IMAGE) .
10
11run:
12 docker run -d \
13 -p 9000:80 \
14 -v /srv/bugzilla:/srv/bugzilla \
15 $(IMAGE)
16
17publish:
18 eval $$(aws ecr get-login --region us-west-2)
19 docker tag $(IMAGE) $(REPO)/$(IMAGE)
20 docker push $(REPO)/$(IMAGE)