From 1572c120f57c66cb774f0423d04ae893fa33eff3 Mon Sep 17 00:00:00 2001 From: Christopher Vagnetoft Date: Thu, 13 Oct 2022 23:17:53 +0200 Subject: [PATCH] Added mailhog to service registry --- registry/mailhog.json | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 registry/mailhog.json diff --git a/registry/mailhog.json b/registry/mailhog.json new file mode 100644 index 0000000..b36abee --- /dev/null +++ b/registry/mailhog.json @@ -0,0 +1,12 @@ +{ + "$type": "service", + "name": "mailhog", + "description": "SMTP server that holds e-mail for debugging", + "tags": [ "app", "mail", "smtp" ], + "author": null, + "image": "mailhog/mailhog", + "ports": [ + { "port": 1025, "info": "SMTP" }, + { "port": 8025, "info": "HTTP" } + ] +}