2018-11-12 19:46:07 +00:00
|
|
|
all: binaries build up
|
2018-11-10 01:27:36 +00:00
|
|
|
|
|
|
|
binaries:
|
2020-07-07 20:09:15 +00:00
|
|
|
CGO_ENABLED=0 GOOS=linux go build -o ca/step-ca github.com/smallstep/certificates/cmd/step-ca
|
2018-11-10 01:27:36 +00:00
|
|
|
|
|
|
|
build: build-nginx build-ca build-renewer
|
|
|
|
build-nginx:
|
|
|
|
docker build -t nginx-test:latest nginx
|
|
|
|
build-ca:
|
|
|
|
docker build -t step-ca-test:latest ca
|
|
|
|
build-renewer:
|
|
|
|
docker build -t step-renewer-test:latest renewer
|
|
|
|
|
2018-11-12 19:46:07 +00:00
|
|
|
up:
|
|
|
|
docker-compose up
|
|
|
|
|
|
|
|
down:
|
|
|
|
docker-compose down
|
|
|
|
|
2018-11-10 01:27:36 +00:00
|
|
|
inspect:
|
2018-11-12 20:19:17 +00:00
|
|
|
step certificate inspect https://localhost:4443 --insecure
|
2018-11-21 00:47:08 +00:00
|
|
|
|
|
|
|
.PHONY: all binaries up down inspect
|
|
|
|
.PHONY: build build-nginx build-ca build-renewer
|