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