Skip to content

Installation

r4ulcl edited this page Feb 10, 2024 · 1 revision

Installation

Docker

Both images use the same binary, but the manager uses a scratch image just to run the binary and the worker uses a kali-linux image to install tools and dependencies easier.

You can pull these images from Docker Hub:

docker pull r4ulcl/nTask-manager
docker pull r4ulcl/nTask-worker

Manual Installation

To install nTask manually, you need to have Go installed on your machine. You can download and install Go from the official website: https://golang.org.

Once Go is installed, you can clone the repository and build the manager:

go install github.com/r4ulcl/nTask

Or, you can clone the repository and build the manager using the following commands:

git clone https://github.com/r4ulcl/nTask.git
cd nTask
go build
Clone this wiki locally