5465 Total CVEs
26 Years
GitHub
README.md
Rendering markdown...
POC / docker-compose.yml YML
version: '3.8'

services:
  app:
    build: .
    env_file: .env
    volumes:
      - ./reports:/app/reports
    # Uncomment if your app needs network access to a target
    # network_mode: host

  # Uncomment to add a database
  # db:
  #   image: postgres:16-alpine
  #   env_file: .env
  #   volumes:
  #     - db_data:/var/lib/postgresql/data

# volumes:
#   db_data: