Flowtriq detects attacks in under a second, tells you exactly what they are, and stops them.
1.1K
Docker packaging for ftagent, the Flowtriq DDoS detection agent. Provides real-time traffic monitoring, attack detection, PCAP capture, and auto-mitigation for Linux servers running in containerized environments.
A valid Flowtriq account and API key are required. Start a free 14-day trial at flowtriq.com.
docker run -d \
--name ftagent \
--network host \
--cap-add NET_RAW \
--cap-add NET_ADMIN \
-e FTAGENT_API_KEY=your_api_key \
-e FTAGENT_NODE_UUID=your_node_uuid \
flowtriq/ftagent
services:
ftagent:
image: flowtriq/ftagent:latest
container_name: ftagent
restart: unless-stopped
network_mode: host
cap_add:
- NET_RAW
- NET_ADMIN
environment:
- FTAGENT_API_KEY=your_api_key
- FTAGENT_NODE_UUID=your_node_uuid
- FTAGENT_INTERFACE=eth0
volumes:
- ftagent-data:/var/lib/ftagent
- ftagent-logs:/var/log/ftagent
volumes:
ftagent-data:
ftagent-logs:
A ready-to-use docker-compose.yml is included in this repository. Copy .env.example or set the environment variables directly.
| Variable | Required | Default | Description |
|---|---|---|---|
FTAGENT_API_KEY | Yes | -- | Your Flowtriq API key |
FTAGENT_NODE_UUID | Yes | -- | Node UUID from your Flowtriq dashboard |
FTAGENT_INTERFACE | No | eth0 | Network interface to monitor |
FTAGENT_API_URL | No | https://api.flowtriq.com | API endpoint |
Alternatively, mount your own config file instead of using environment variables:
docker run -d \
--name ftagent \
--network host \
--cap-add NET_RAW \
--cap-add NET_ADMIN \
-v /path/to/config.json:/etc/ftagent/config.json \
flowtriq/ftagent
--network host is required for the agent to see real network trafficNET_RAW and NET_ADMIN capabilities are required for packet capturelatest -- latest stable releasex.y.z -- specific version (e.g., 1.9.10)git clone https://github.com/Flowtriq/ftagent-docker.git
cd ftagent-docker
docker build -t ftagent .
MIT License. See LICENSE for details.
Content type
Image
Digest
sha256:95b5ca0e4…
Size
65.1 MB
Last updated
27 days ago
docker pull flowtriq/ftagent