diff options
author | Bryan McNulty <bryanmcnulty@protonmail.com> | 2025-04-25 19:32:10 -0500 |
---|---|---|
committer | Bryan McNulty <bryanmcnulty@protonmail.com> | 2025-04-25 19:32:10 -0500 |
commit | cbf293d06b869941b16c51da086a58dd9af58f04 (patch) | |
tree | b7d92ec766a85ef892c715442146ce7f79f8a027 /README.md | |
parent | 3711ee0cacf83fd72d1a379eb595ec0dd89e725b (diff) | |
download | goexec-cbf293d06b869941b16c51da086a58dd9af58f04.tar.gz goexec-cbf293d06b869941b16c51da086a58dd9af58f04.zip |
Add Docker install instructions to README
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. |