Containerized Velociraptor DFIR platform v0.77.1 with security hardening & multi-platform support
10K+
š¦ DFIR Platform in Docker
Velociraptor is an open-source endpoint monitoring and digital forensics tool. This image provides a containerized deployment with security hardening and multi-platform client support.
docker run -d \
-p 8889:8889 -p 8000:8000 -p 8001:8001 \
-v $(pwd)/data:/velociraptor \
graype28/velociraptor:latest
Create admin user (required on first run):
docker exec -it <container_name> ./velociraptor/velociraptor \
--config /velociraptor/server.config.yaml \
user add admin admin --role administrator
Access the GUI at https://localhost:8889
Capabilities
Security
Included
| Tag | Description |
|---|---|
latest | Latest stable (v0.77.1) |
v0.77.1 | Specific version |
v0.76.5 | Previous stable release |
Environment Variables:
VELOX_USER=admin # Admin username
VELOX_PASSWORD=SecurePassword123 # Admin password (required!)
VELOX_FRONTEND_HOSTNAME=your.domain # Public hostname
VELOX_SERVER_URL=https://your.domain:8000/ # Client connection URL
Docker Compose Example:
version: '3.8'
services:
velociraptor:
image: graype28/velociraptor:latest
ports:
- "8889:8889" # Web GUI
- "8000:8000" # Frontend (clients)
- "8001:8001" # API/gRPC
environment:
- VELOX_PASSWORD=${VELOX_PASSWORD}
- VELOX_FRONTEND_HOSTNAME=${HOSTNAME}
volumes:
- ./velociraptor:/velociraptor
restart: unless-stopped
ā
Latest stable release with new features and improvements
ā
Built as linux/amd64 for ECS Fargate compatibility
ā
See full 0.77 release notesā for details
Built for production DFIR workflows š”ļø
Content type
Image
Digest
sha256:5c6863f98ā¦
Size
123.9 MB
Last updated
26 days ago
docker pull graype28/velociraptor