Skip to content

Commit 5b6e96c

Browse files
committed
added a makefile
1 parent 6902ea6 commit 5b6e96c

File tree

1 file changed

+14
-0
lines changed

1 file changed

+14
-0
lines changed

Makefile

+14
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
AILOADS_TEST = test
2+
AILOADS_GITHUB = https://github.com/tarekziade/shavar-loadtests
3+
4+
.PHONY: docker-build docker-run docker-export
5+
6+
docker-build:
7+
docker build -t ailoads/loadtest .
8+
9+
docker-run:
10+
docker run -e AILOADS_GITHUB=$(AILOADS_GITHUB) -e AILOADS_TEST=$(AILOADS_TEST) ailoads/loadtest
11+
12+
docker-export:
13+
docker save "ailoads/loadtest:latest" | bzip2> ailoads-latest.tar.bz2
14+

0 commit comments

Comments
 (0)