diff options
author | Bryan McNulty <bryan@falconops.com> | 2025-04-26 04:43:03 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2025-04-26 04:43:03 -0500 |
commit | 0ff002291775f757a0c9eeae3fc3316a6cf32071 (patch) | |
tree | 6bc592a9fe25267f8a9e45295f4e07a282a124b4 /README.md | |
parent | 86591e4921c8767c17b679762738467ab07c2486 (diff) | |
parent | 97cd1d343161a61f1d8eacfc6a53f65748e50548 (diff) | |
download | goexec-0ff002291775f757a0c9eeae3fc3316a6cf32071.tar.gz goexec-0ff002291775f757a0c9eeae3fc3316a6cf32071.zip |
Merge pull request #6 from FalconOpsLLC/dev
Merge pull request: main<-dev
Diffstat (limited to 'README.md')
-rw-r--r-- | README.md | 18 |
1 files changed, 18 insertions, 0 deletions
@@ -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. |