aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--README.md18
1 files changed, 18 insertions, 0 deletions
diff --git a/README.md b/README.md
index 1d75e46..6bc4fc7 100644
--- a/README.md
+++ b/README.md
@@ -34,6 +34,24 @@ CGO_ENABLED=0 go build -ldflags="-s -w"
sudo install ./goexec /usr/local/bin
```
+### Install with Docker
+
+We've provided a Dockerfile to build and run GoExec within Docker containers.
+
+```shell
+# (Linux) Install GoExec Docker image
+# Fetch source
+git clone https://github.com/FalconOpsLLC/goexec
+cd goexec
+
+# Build goexec image
+docker build . --tag goexec --network host
+
+# Run goexec via Docker container
+alias goexec='docker run -it --rm --name goexec goexec'
+goexec -h # display help menu
+```
+
### Install from Release
You may also download [the latest release](https://github.com/FalconOpsLLC/goexec/releases/latest) for 64-bit Windows, macOS, or Linux.