Vulnerability Scanner Deployment Guide
The ZeroXploit Vulnerability Scanner helps identify vulnerabilities in your systems and networks. Follow the steps below to deploy it:
Basic Deployment
docker pull edwardt340/enterprise_apps-vulnerability-scanner:latest
docker run -d -p 8000:8000 edwardt340/enterprise_apps-vulnerability-scanner
Kubernetes Deployment
If you're using Kubernetes, use the following commands to deploy the Vulnerability Scanner:
kubectl create deployment vuln-scanner --image=zeroxploit/vuln-scanner:latest
kubectl expose deployment vuln-scanner --type=LoadBalancer --port=8000
Note: Ensure you have Docker installed on your system before running the above commands. For Kubernetes, ensure you have a cluster set up.