From 974eb165af1178a55794b5fb4b07bf2b273cd088 Mon Sep 17 00:00:00 2001 From: Chris Kennedy Date: Tue, 23 Apr 2024 07:11:30 -0400 Subject: [PATCH] add docker cmds to makefile --- Makefile | 12 ++++++++++-- 1 file changed, 10 insertions(+), 2 deletions(-) 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 -