0e8cf8cc47
Signed-off-by: Derek McGowan <derek@mcgstyle.net> (github: dmcgowan)
22 lines
230 B
Makefile
22 lines
230 B
Makefile
.PHONY: build test
|
|
|
|
build:
|
|
docker-compose build
|
|
|
|
start: build
|
|
docker-compose up -d
|
|
|
|
stop:
|
|
docker-compose stop
|
|
|
|
clean:
|
|
docker-compose kill
|
|
docker-compose rm -f
|
|
|
|
install:
|
|
sh ./install_certs.sh
|
|
|
|
test:
|
|
# Run tests
|
|
|
|
all: build
|