45f1e0e7f6
- mailer.js: add requireTLS to force STARTTLS before AUTH on internal relay
- docker-compose.yml: use network_mode:bridge to reach 172.17.0.1:2587 SMTP relay
and switch to ${SMTP_HOST:-172.17.0.1}/${SMTP_PORT:-2587} defaults
Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
23 lines
517 B
YAML
23 lines
517 B
YAML
services:
|
|
morsequest:
|
|
image: morsequest:latest
|
|
container_name: morsequest
|
|
restart: unless-stopped
|
|
network_mode: bridge
|
|
ports:
|
|
- "127.0.0.1:3004:8080"
|
|
volumes:
|
|
- morsequest-data:/app/data
|
|
environment:
|
|
PORT: "8080"
|
|
NODE_ENV: production
|
|
SMTP_HOST: 172.17.0.1
|
|
SMTP_PORT: "2587"
|
|
SMTP_USER: ${SMTP_USER}
|
|
SMTP_PASS: ${SMTP_PASS}
|
|
ADMIN_PASSWORD: ${ADMIN_PASSWORD}
|
|
APP_URL: https://morsequest.keylinkit.net
|
|
|
|
volumes:
|
|
morsequest-data:
|