From 943e04c8ceceb2a424ae2c8c20afd7828c0bf22c Mon Sep 17 00:00:00 2001 From: Paul Hutelmyer Date: Fri, 23 Aug 2024 16:06:11 -0400 Subject: [PATCH] Updating Docker Compose Reference in README --- README.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 9542f942..24d185a1 100644 --- a/README.md +++ b/README.md @@ -57,7 +57,7 @@ echo 'include "./rules/index.yar"' > configs/python/backend/yara/rules.yara **Note**: You can skip the `go build` process and use the `Strelka UI` at `http://0.0.0.0:9980` to analyze files. ```bash -docker-compose -f build/docker-compose-no-build.yaml up -d && \ +docker compose -f build/docker-compose-no-build.yaml up -d && \ go build github.com/target/strelka/src/go/cmd/strelka-oneshot ``` @@ -65,8 +65,8 @@ go build github.com/target/strelka/src/go/cmd/strelka-oneshot **Note**: You can skip the `go build` process and use the `Strelka UI` at `http://0.0.0.0:9980` to analyze files. ```bash -docker-compose -f build/docker-compose.yaml build && \ -docker-compose -f build/docker-compose.yaml up -d && \ +docker compose -f build/docker-compose.yaml build && \ +docker compose -f build/docker-compose.yaml up -d && \ go build github.com/target/strelka/src/go/cmd/strelka-oneshot ```