docker-postfix/integration-tests/basic-test/docker-compose.yml

29 lines
733 B
YAML
Raw Normal View History

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"