Integrations
ClamAV
ClamAV is used to scan shares for malicious files and remove them if found.
Please note that ClamAV needs a lot of resources.
Docker
If you are already running ClamAV elsewhere, you can specify the CLAMAV_HOST environment variable to point to that instance.
Else you have to add the ClamAV container to the Pingvin Share X Docker Compose stack:
- Add the ClamAV container to the Docker Compose stack and start the container.
services:
pingvin-share-x:
image: smp46/pingvin-share-x
...
+ depends_on:
+ clamav:
+ condition: service_healthy
+ clamav:
+ restart: unless-stopped
+ image: clamav/clamav
- Docker will wait for ClamAV to start before starting Pingvin Share X. This may take a minute or two.
- The Pingvin Share logs should now log "ClamAV is active"
Stand-Alone
- Install ClamAV
- Specify the
CLAMAV_HOSTenvironment variable for the backend and restart the Pingvin Share X backend.