mirror of
https://github.com/darold/sendmailanalyzer.git
synced 2026-05-15 14:15:56 -06:00
This commit adds a buildable Dockerfile based on the httpd apache2 docker image with sa_cache cron support built in. It also comes with a docker-compose example file.
11 lines
291 B
Text
11 lines
291 B
Text
version: '2'
|
|
services:
|
|
sma:
|
|
restart: always
|
|
build: .
|
|
expose:
|
|
- 80
|
|
volumes:
|
|
- /path/to/mail.log:/var/log/mail.log:ro
|
|
- /path/to/data:/usr/local/sendmailanalyzer/data
|
|
- /path/to/sendmailanalyzer.conf:/usr/local/sendmailanalyzer/sendmailanalyzer.conf
|