Skip to content

Commit 5c18604

Browse files
committed
Migrates to Mailpit (not deprecated and supports arm64)
Switches from Mailhog to Mailpit for improved email testing and development workflows. Mailpit offers enhanced features and a more modern interface.
1 parent f2a9d79 commit 5c18604

File tree

6 files changed

+7
-6
lines changed

6 files changed

+7
-6
lines changed

.devcontainer/docker-compose.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ services:
5050
- 6379:6379
5151

5252
mail:
53-
image: mailhog/mailhog:latest
53+
image: axllent/mailpit:v1.27.10
5454
ports:
5555
- 8025:8025
5656
- 1025:1025

docker/docker-compose.7x.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ services:
2626
- 6379:6379
2727

2828
mail:
29-
image: mailhog/mailhog:latest
29+
image: axllent/mailpit:v1.27.10
3030
ports:
3131
- 8025:8025
3232
- 1025:1025

docker/docker-compose.apm.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -154,7 +154,7 @@ services:
154154
- 6379:6379
155155

156156
mail:
157-
image: mailhog/mailhog:latest
157+
image: axllent/mailpit:v1.27.10
158158
ports:
159159
- 8025:8025
160160
- 1025:1025

docker/docker-compose.dev.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,7 @@ services:
7474
- 6379:6379
7575

7676
mail:
77-
image: mailhog/mailhog:latest
77+
image: axllent/mailpit:v1.27.10
7878
ports:
7979
- 8025:8025
8080
- 1025:1025

docker/docker-compose.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ services:
2828
- 6379:6379
2929

3030
mail:
31-
image: mailhog/mailhog:latest
31+
image: axllent/mailpit:v1.27.10
3232
ports:
3333
- 8025:8025
3434
- 1025:1025

src/Exceptionless.AppHost/Program.cs

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,8 @@
1717
.WithClearCommand()
1818
.WithRedisInsight(b => b.WithLifetime(ContainerLifetime.Persistent).WithContainerName("Exceptionless-RedisInsight").WithUrlForEndpoint("http", u => u.DisplayText = "Cache"));
1919

20-
var mail = builder.AddContainer("Mail", "mailhog/mailhog")
20+
var mail = builder.AddContainer("Mail", "axllent/mailpit")
21+
.WithImageTag("v1.27.10")
2122
.WithLifetime(ContainerLifetime.Persistent)
2223
.WithContainerName("Exceptionless-Mail")
2324
.WithEndpoint(8025, 8025, "http")

0 commit comments

Comments
 (0)