diff --git a/mailhog/docker-compose.yml b/mailhog/docker-compose.yml new file mode 100644 index 0000000..42c5a20 --- /dev/null +++ b/mailhog/docker-compose.yml @@ -0,0 +1,12 @@ +version: "3.8" + +services: + mailhog: + platform: + linux/amd64 + image: mailhog/mailhog:latest + container_name: mailhog + restart: unless-stopped + ports: + - "1025:1025" # SMTP port + - "8025:8025" # Web UI \ No newline at end of file