| 123456789101112131415161718192021222324252627282930 |
- ---
- name: "ClamAV"
- description: "An open-source antivirus engine"
- version: "0.0.1"
- date: "2023-10-01"
- author: "Christian Lempa"
- tags:
- - "clamav"
- - "antivirus"
- - "security"
- ---
- services:
- clamav:
- image: docker.io/clamav/clamav:1.4.3
- container_name: clamav
- volumes:
- - ./config/clamd.conf:/etc/clamav/clamd.conf:ro
- - ./config/freshclam.conf:/etc/clamav/freshclam.conf:ro
- - clamav-data:/var/lib/clamav
- # --> (Optional) Add a directory to scan
- # - ./scandir:/scandir:rw
- # <--
- # -- Change logging driver here... (required for Wazuh integration)
- logging:
- driver: syslog
- options:
- tag: "clamd"
- restart: unless-stopped
- volumes:
- clamav-data:
|