diff --git a/Makefile b/Makefile index e6165f53..cae5eb15 100644 --- a/Makefile +++ b/Makefile @@ -1,4 +1,4 @@ -.PHONY: all clean probe_run build build_gst install +.PHONY: all clean probe_run build build_gst docker docker_up docker_down install all: build @@ -14,6 +14,14 @@ build: build_gst: sh scripts/compile.sh gst +docker: + docker compose build + +docker_up: + docker compose up + +docker_down: + docker compose down + install: sh scripts/install.sh -