v0.1.44 dev: 로컬 메일 서버 및 댓글 UI 안정화

Made-with: Cursor
This commit is contained in:
2026-04-16 18:19:52 +09:00
parent d2aeeff2fe
commit c6f73c66ee
7 changed files with 38 additions and 7 deletions

View File

@@ -8,6 +8,24 @@ services:
environment:
url: http://localhost:2368
NODE_ENV: development
mail__transport: SMTP
mail__from: "Ghost Local <noreply@localhost>"
mail__options__host: mailpit
mail__options__port: 1025
mail__options__secure: "false"
mail__options__ignoreTLS: "true"
mail__options__auth__user: ""
mail__options__auth__pass: ""
volumes:
- ./.docker/ghost/content:/var/lib/ghost/content
- ./.docker/theme/ghost-theme-thred-clone:/var/lib/ghost/content/themes/ghost-theme-thred-clone
depends_on:
- mailpit
mailpit:
image: axllent/mailpit:latest
container_name: ghost-theme-mailpit
restart: unless-stopped
ports:
- "1025:1025"
- "8025:8025"