mirror of
https://github.com/ChristianLempa/boilerplates.git
synced 2025-02-24 14:30:48 +01:00
21 lines
532 B
YAML
21 lines
532 B
YAML
---
|
|
services:
|
|
clamav:
|
|
image: clamav/clamav:1.4.1
|
|
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:
|