16 lines
431 B
YAML
16 lines
431 B
YAML
# Hearth — consent-only email warmup service
|
|
name: hearth
|
|
services:
|
|
hearth:
|
|
build: .
|
|
container_name: hearth
|
|
env_file:
|
|
- path: .env
|
|
required: false
|
|
volumes:
|
|
- ./hearth.yml:/app/hearth.yml:ro
|
|
- ./data:/app/data
|
|
restart: unless-stopped
|
|
# No published ports — Hearth only ever talks outbound (SMTP/IMAP) to the
|
|
# participants in hearth.yml. It has no HTTP surface to expose.
|