Hi,
I want to use the clamav Container in another compose, so i try to Connect the mailcow container to my own.
When i do that my container is not reachable anymore.
Update: I put clamav in my nextcloud networ, that works. How can I create override yml so it is persistent?
My compose looks like this
clamd-mailcow:
image: ghcr.io/mailcow/clamd:1.70
restart: always
depends_on:
unbound-mailcow:
condition: service_healthy
dns:
- ${IPV4_NETWORK:-172.22.1}.254
environment:
- TZ=${TZ}
- SKIP_CLAMD=${SKIP_CLAMD:-n}
volumes:
- ./data/conf/clamav/:/etc/clamav/:Z
- clamd-db-vol-1:/var/lib/clamav
networks:
npmnet:
aliases:
- clamd
mailcow-network:
ipv4_address: 172.22.1.50
aliases:
- clamd
Greetings