1
0
Fork 0
mirror of https://github.com/TwiN/gatus.git synced 2024-12-14 11:58:04 +00:00
twin-gatus/Makefile

11 lines
294 B
Makefile
Raw Normal View History

2021-01-26 01:56:02 +00:00
docker-build:
docker build -t twinproduction/gatus:latest .
2021-01-30 04:10:11 +00:00
docker-build-and-run:
docker build -t twinproduction/gatus:latest . && docker run -p 8080:8080 --name gatus twinproduction/gatus:latest
2021-01-26 01:56:02 +00:00
build-frontend:
npm --prefix web/app run build
run-frontend:
npm --prefix web/app run serve