We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
In my docker-compose I'm using the following line
command: "--listener :8080 --provider local --basedir /basedir --purge-days 10 --purge-interval 2 --max-upload-size 10000000 --clamav-host nextav --perform-clamav-prescan true"
but when I upload a file I'm getting
2023-12-20T19:51:00.535764246Z [transfer.sh]2023/12/20 19:51:00 dial unix nextav: connect: no such file or directory
I have clamav within the docker-compose
av: image: mkodockx/docker-clamav:alpine container_name: nextav hostname: nextav restart: unless-stopped volumes: - /opt/docker/clamav:/var/lib/clamav - /var/run/clamav/:/var/run/clamav/
but not sure how to actually link up transfer with clamav as the hostname issue seems to causing me lots of problems.
Thanks
The text was updated successfully, but these errors were encountered:
hi @zenjabba support for clamav scan over the network was removed with #389, introducing the possibility to enbale clamav scan on upload
I apologise, the --clamav-host flag has not being renamed to --clamav-path, but it only supports a path now
--clamav-host
--clamav-path
Please let me know if you need any help in sharing the path between containers in your docker-compose file
Sorry, something went wrong.
No branches or pull requests
In my docker-compose I'm using the following line
command: "--listener :8080 --provider local --basedir /basedir --purge-days 10 --purge-interval 2 --max-upload-size 10000000 --clamav-host nextav --perform-clamav-prescan true"
but when I upload a file I'm getting
2023-12-20T19:51:00.535764246Z [transfer.sh]2023/12/20 19:51:00 dial unix nextav: connect: no such file or directory
I have clamav within the docker-compose
av:
image: mkodockx/docker-clamav:alpine
container_name: nextav
hostname: nextav
restart: unless-stopped
volumes:
- /opt/docker/clamav:/var/lib/clamav
- /var/run/clamav/:/var/run/clamav/
but not sure how to actually link up transfer with clamav as the hostname issue seems to causing me lots of problems.
Thanks
The text was updated successfully, but these errors were encountered: