-
Notifications
You must be signed in to change notification settings - Fork 42
/
Makefile
32 lines (24 loc) · 1.25 KB
/
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
###############################################################################
### CI ###
###############################################################################
include makefiles/ci.mk
include makefiles/test.mk
###############################################################################
### Build ###
###############################################################################
include makefiles/build.mk
include makefiles/start.mk
###############################################################################
### Tagging and Release ###
###############################################################################
include makefiles/tag.mk
###############################################################################
### Docker Utils ###
###############################################################################
kill:
docker kill $$(docker ps -q)
clear:
-docker compose down
-docker image rm $$(docker image ls -q)
-docker volume rm $$(docker volume ls -q)
-docker rm -f $$(docker ps -a -q)