tests should be passing now

This commit is contained in:
SwiftyOS
2025-06-30 11:42:06 +02:00
parent 31bcdb97a7
commit aa66188a9a

View File

@@ -1,3 +1,5 @@
volumes:
clamav-data:
services:
postgres-test:
image: ankane/pgvector:latest
@@ -42,7 +44,24 @@ services:
ports:
- "5672:5672"
- "15672:15672"
clamav:
image: clamav/clamav-debian:latest
ports:
- "3310:3310"
volumes:
- clamav-data:/var/lib/clamav
environment:
- CLAMAV_NO_FRESHCLAMD=false
- CLAMD_CONF_StreamMaxLength=50M
- CLAMD_CONF_MaxFileSize=100M
- CLAMD_CONF_MaxScanSize=100M
- CLAMD_CONF_MaxThreads=12
- CLAMD_CONF_ReadTimeout=300
healthcheck:
test: ["CMD-SHELL", "clamdscan --version || exit 1"]
interval: 30s
timeout: 10s
retries: 3
networks:
app-network-test:
driver: bridge