Files
pingvin-share/docs/docs/setup/integrations.md
2024-09-18 23:16:41 +02:00

804 B

id
id
integrations

Integrations

ClamAV

NOTE: Currently ClamAV is only available in the Docker installation.

ClamAV is used to scan shares for malicious files and remove them if found.

  1. Add the ClamAV container to the Docker Compose stack and start the container.
services:
  pingvin-share:
    image: stonith404/pingvin-share
    ...
+   depends_on:
+     clamav:
+       condition: service_healthy

+  clamav:
+    restart: unless-stopped
+    image: clamav/clamav

  1. Docker will wait for ClamAV to start before starting Pingvin Share. This may take a minute or two.
  2. The Pingvin Share logs should now log "ClamAV is active"

Please note that ClamAV needs a lot of ressources.