prometheus-server-app/Makefile

39 lines
723 B
Makefile
Raw Normal View History

2020-11-05 12:54:41 +00:00
CLOUDRON_APP ?= prometheus
CLOUDRON_ID := $(shell jq -r .id CloudronManifest.json)
DOCKER_REPO ?= eriktad
.PHONY: default
default: build update
.PHONY: init
init:
cloudron init
.PHONY: build
build:
cloudron build --set-repository $(DOCKER_REPO)/$(CLOUDRON_ID)
.PHONY: update
update: build
cloudron update --app ${CLOUDRON_APP}
.PHONY: install
install:
cloudron install --location ${CLOUDRON_APP}
.PHONY: uninstall
uninstall:
cloudron uninstall --app ${CLOUDRON_APP}
.PHONY: install-debug
install-debug:
cloudron install --location ${CLOUDRON_APP} --debug
.PHONY: exec
exec:
cloudron exec --app ${CLOUDRON_APP}
.PHONY: logs
logs:
cloudron logs -f --app ${CLOUDRON_APP}