https://github.com/simonrupf/docker-clamd
An antivirus container image, based on alpine, running the clamav daemon for use i.e. in mail servers.
https://github.com/simonrupf/docker-clamd
Last synced: 3 months ago
JSON representation
An antivirus container image, based on alpine, running the clamav daemon for use i.e. in mail servers.
- Host: GitHub
- URL: https://github.com/simonrupf/docker-clamd
- Owner: simonrupf
- Created: 2019-08-04T17:49:05.000Z (almost 7 years ago)
- Default Branch: master
- Last Pushed: 2026-03-08T06:32:03.000Z (3 months ago)
- Last Synced: 2026-03-08T11:35:26.540Z (3 months ago)
- Language: Shell
- Homepage: https://hub.docker.com/r/simonrupf/clamav
- Size: 45.9 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
Awesome Lists containing this project
README
# clamd
An antivirus container image, based on alpine, running the clamav daemon for use
via TCP port, i.e. in mail servers.
## Software stack
- clamd and freshclam are written in C.
- rsync is used for signature updates.
- busybox /bin/sh shell is used for service checks and update scheduling.
## Environment variables
- `TZ`: timezone used for logging, defaults to UTC
## Persistent volumes
- `/var/lib/clamav`: signature databases - owner 100, group 102, mode 0755
## Network ports
- `3310/tcp`
## Usage
```shell
make run
```
## Stop
```shell
make clean
```
## Build
```shell
make build
```
## Build & run
```shell
make
```
## Debug image contents
```shell
make debug
```