Skip to content

Commit

Permalink
add docker cmds to makefile
Browse files Browse the repository at this point in the history
  • Loading branch information
ltn-chriskennedy committed Apr 23, 2024
1 parent f98602d commit 974eb16
Showing 1 changed file with 10 additions and 2 deletions.
12 changes: 10 additions & 2 deletions Makefile
Original file line number Diff line number Diff line change
@@ -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

Expand All @@ -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

0 comments on commit 974eb16

Please sign in to comment.