-
Notifications
You must be signed in to change notification settings - Fork 23
/
Makefile
42 lines (29 loc) · 1.07 KB
/
Makefile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
VER=$(shell git rev-parse --short HEAD)
build:
cd rate-limit-filter && cargo +nightly build --target=wasm32-unknown-unknown --release
deploy:
docker-compose up --build --remove-orphans
# shows only the logs related to WASM filter/singleton
deploy-filtered:
docker-compose up --build --remove-orphans | grep "\[wasm\]\|Starting"
run: build deploy
run-filtered: build deploy-filtered
clean:
cargo clean
build-web:
cd web && docker build -t layer5/image-hub-web:latest -t layer5/image-hub-web:$(VER) .
build-api:
cd api && docker build -t layer5/image-hub-api:latest -t layer5/image-hub-api:$(VER) .
build-envoy:
cd rate-limit-filter && docker build -t layer5/image-hub-envoy:latest -t layer5/image-hub-envoy:$(VER) .
dev-run-api: build-api deploy
dev-run-web:
cd web && yarn serve
image-push-latest:
docker push layer5/image-hub-web:latest
docker push layer5/image-hub-api:latest
docker push layer5/image-hub-envoy:latest
image-push-version:
docker push layer5/image-hub-web:$(VER)
docker push layer5/image-hub-api:$(VER)
docker push layer5/image-hub-envoy:$(VER)