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