Skip to content
This repository has been archived by the owner on Apr 27, 2023. It is now read-only.

Latest commit

 

History

History
33 lines (27 loc) · 779 Bytes

RUN_IT.md

File metadata and controls

33 lines (27 loc) · 779 Bytes

Running Threatseer

The easiest way to get started is to run the agent and server Docker images.

Running the agent

The agent must run as a priviledged container and with the mounts so it can collect telemetry from the kernel and filesystem.

docker run \
    --privileged \
    --name threatseer-agent \
    --rm \
    -it \
    --net=host \
    -v /proc:/var/run/threatseer/proc/:ro \
    -v /sys/kernel/debug:/sys/kernel/debug \
    -v /sys/fs/cgroup:/sys/fs/cgroup \
    -v /var/lib/docker:/var/lib/docker:ro \
    -v /var/run/docker:/var/run/docker:ro \
    dustindecker/threatseer:agent-0.4.0

Running the server

docker run \
    --name threatseer-server \
    --rm \
    -it \
    --net=host \
    dustindecker/threatseer:server-0.4.0