This commit is contained in:
Refactorian
2023-08-15 23:58:53 +09:00
committed by GitHub
parent 0a66896435
commit 3f41b5a9a3
3 changed files with 12 additions and 1 deletions

View File

@@ -29,7 +29,7 @@ REDIS_PASSWORD=null
REDIS_PORT=6379
MAIL_MAILER=smtp
MAIL_HOST=mailpit
MAIL_HOST=mailhog
MAIL_PORT=1025
MAIL_USERNAME=null
MAIL_PASSWORD=null

View File

@@ -5,6 +5,7 @@
- PHP v8.2.6
- MySQL v8.0
- MariaDB v10.11
- Mailhog v1.0.1
# Requirements
- Stable version of [Docker](https://docs.docker.com/engine/install/)

View File

@@ -65,3 +65,13 @@ services:
# MYSQL_DATABASE: laravel_db_name
# MYSQL_USER: laravel_db_user
# MYSQL_PASSWORD: laravel_db_pass
####################################################################################################
# MailHog
####################################################################################################
mailhog:
container_name: laravel_mailhog
image: mailhog/mailhog:latest
ports:
- "8025:8025"
- "1025:1025"