Update dash. Add alerting webhook.
This commit is contained in:
parent
bae23a62d0
commit
d189912bcf
3 changed files with 52 additions and 12 deletions
22
metrics/Makefile
Normal file
22
metrics/Makefile
Normal file
|
@ -0,0 +1,22 @@
|
|||
.PHONY: all build up update down
|
||||
|
||||
# ---------------------------- Docker ----------------------------
|
||||
|
||||
all:
|
||||
go test -v ./...
|
||||
|
||||
.env:
|
||||
@cp example.env .env
|
||||
@echo "Please edit .env to suit your environment before proceeding"
|
||||
@exit 1
|
||||
|
||||
build: .env
|
||||
@docker compose build
|
||||
|
||||
up: .env
|
||||
@docker compose up -d --build
|
||||
|
||||
update: up
|
||||
|
||||
down:
|
||||
@docker compose down
|
Loading…
Add table
Add a link
Reference in a new issue