-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathMakefile
43 lines (33 loc) · 769 Bytes
/
Makefile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
# sudo apt install jq
CLOUDRON_APP ?= vault
CLOUDRON_ID := $(shell jq -r .id CloudronManifest.json)
DOCKER_REPO ?= euanmc
.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}
.PHONY: restart
restart:
cloudron restart --app ${CLOUDRON_APP}