Unofficial Docker container image for the Rapid7 InsightIDR Collector.
This Docker container is intended for use in lab environments. It allows for easy deployment and testing of the Rapid7 InsightIDR Collector.
This is NOT supported by Rapid7! But it works :-)
Each Insight-Platform region uses its own individual setup file. As such, there is no latest image, but different images for each region.
Please choose the tag corresponding to the region where your Insight Platform account was created.
| Region | Image |
|---|---|
| US | philippbehmer/docker_rapid7-collector:us |
| US2 | philippbehmer/docker_rapid7-collector:us2 |
| US3 | philippbehmer/docker_rapid7-collector:us3 |
| EU | philippbehmer/docker_rapid7-collector:eu |
| AP | philippbehmer/docker_rapid7-collector:ap |
| CA | philippbehmer/docker_rapid7-collector:ca |
| AU | philippbehmer/docker_rapid7-collector:au |
Ensure you use the correct region tag, replace the volume paths with valid directories on your Docker host, and set an FQDN!
The following configuration starts the container using the host network. This way, you don't need to forward all ports from the host to the container every time you add a new event source. If you only want other containers to send logs, you can remove the network_mode line and use Docker's internal network.
The volumes mount host directories into the container to preserve logs, configuration, and local cache.
The collector requires an FQDN or it will create warning messages. This FQDN is used by the Insight Agents to connect to the Collector.
---
services:
rapid7-collector:
image: philippbehmer/docker_rapid7-collector:us
container_name: rapid7-collector
hostname: collector.domain.com
volumes:
- /path/to/persistent/storage/logs/:/opt/rapid7/collector/logs/
- /path/to/persistent/storage/felix-cache/:/opt/rapid7/collector/felix-cache/
- /path/to/persistent/storage/spillover-directory/:/opt/rapid7/collector/spillover-directory
network_mode: "host"
restart: unless-stopped
docker run \
-d \
--restart=unless-stopped \
--network=host \
--hostname collector.domain.com \
-v /path/to/persistent/storage/logs:/opt/rapid7/collector/logs/ \
-v /path/to/persistent/storage/felix-cache/:/opt/rapid7/collector/felix-cache/ \
-v /path/to/persistent/storage/spillover-directory/:/opt/rapid7/collector/spillover-directory \
--name rapid7-collector \
philippbehmer/docker_rapid7-collector:us
After starting the collector for the first time, extract the token (Agent key) with:
docker logs rapid7-collector
Then, activate the collector in InsightIDR.
You can build your own image on the fly using:
docker build -t rapid7-collector --build-arg REGION=<region> .
(replace region with the region code)
This command creates a fresh image with the latest InsightIDR Collector version.
Since the setup automatically starts the Collector, it generates unique files such as certificates, meaning this image can only be used once. To avoid this limitation, you can manually create the image.
You can give feedback on the Rapid7 Discuss Board.
For bugs and improvements please create an issue or send a pull request.