mirror of
https://github.com/bokysan/docker-postfix.git
synced 2024-11-10 17:05:00 +08:00
29 lines
No EOL
733 B
YAML
29 lines
No EOL
733 B
YAML
version: '3.7'
|
|
services:
|
|
postfix_test_587:
|
|
hostname: "postfix"
|
|
image: "boky/postfix"
|
|
restart: always
|
|
healthcheck:
|
|
test: [ "CMD", "sh", "-c", "netstat -an | fgrep 587 | fgrep -q LISTEN" ]
|
|
interval: 10s
|
|
timeout: 5s
|
|
start_period: 10s
|
|
retries: 2
|
|
volumes:
|
|
- "./test-keys:/etc/opendkim/keys"
|
|
- "./docker-init.db:/docker-init.db/"
|
|
environment:
|
|
FORCE_COLOR: "1"
|
|
ALLOWED_SENDER_DOMAINS: "example.org"
|
|
tests:
|
|
image: "boky/postfix-integration-test"
|
|
restart: "no"
|
|
volumes:
|
|
- "../tester:/code"
|
|
build:
|
|
context: ../tester
|
|
command: "/" # relative path to /code
|
|
environment:
|
|
FROM: "demo@example.org"
|
|
TO: "test@gmail.com" |