2015-05-22 16:39:45 -07:00
|
|
|
.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:
|
2015-05-26 17:50:27 -07:00
|
|
|
sh ./install_certs.sh localhost
|
|
|
|
sh ./install_certs.sh localregistry
|
2015-05-22 16:39:45 -07:00
|
|
|
|
|
|
|
test:
|
2015-05-26 17:50:27 -07:00
|
|
|
@echo "!!!!Ensure /etc/hosts entry is updated for localregistry and make install has been run"
|
|
|
|
sh ./test_docker.sh localregistry
|
2015-05-22 16:39:45 -07:00
|
|
|
|
|
|
|
all: build
|