File tree 4 files changed +15
-0
lines changed
4 files changed +15
-0
lines changed Original file line number Diff line number Diff line change
1
+ sendmail_path =/usr/sbin/sendmail -S localhost:1025 -t
Original file line number Diff line number Diff line change @@ -2,6 +2,7 @@ WEB_PORT=8080
2
2
MYSQL_PORT=3306
3
3
SELENIUM_PORT=4444
4
4
VNC_PORT=5900
5
+ MAIL_PORT=8025
5
6
BASE_URI=http://127.0.0.1:8080
6
7
UID=1000
7
8
GID=1000
Original file line number Diff line number Diff line change @@ -100,6 +100,11 @@ in order to see tests running in the browser. Using a VNC client such as Remmina
100
100
simply connect to port ` 127.0.0.1:5900 ` with the password ` secret ` . If you've changed the ` VNC_PORT `
101
101
environment variable be sure to connect to that port instead.
102
102
103
+ ## Mailpit
104
+
105
+ The mailpit service is available and configured to capture email sent from the site. This can be
106
+ accessed at http://localhost:8025 . For more info see https://github.com/axllent/mailpit .
107
+
103
108
## Contributing
104
109
105
110
Once you're up and running you'll have Drupal core checked out in the app directory. From here you
Original file line number Diff line number Diff line change @@ -6,6 +6,8 @@ services:
6
6
- " ${MYSQL_PORT:-3306}:3306"
7
7
- " ${SELENIUM_PORT:-4444}:4444"
8
8
- " ${VNC_PORT:-5900}:5900"
9
+ - " ${SMTP_PORT:-1025}:1025"
10
+ - " ${MAIL_PORT:-8025}:8025"
9
11
extra_hosts :
10
12
- " host.docker.internal:host-gateway"
11
13
volumes :
@@ -23,6 +25,7 @@ services:
23
25
network_mode : service:nginx
24
26
volumes :
25
27
- ./:/data
28
+ - ./.docker/php/custom.ini:/etc/php/conf.d/99-custom.ini
26
29
environment :
27
30
- PHP_IDE_CONFIG=serverName=localhost
28
31
@@ -43,6 +46,7 @@ services:
43
46
- PHP_IDE_CONFIG=serverName=localhost
44
47
volumes :
45
48
- ./:/data
49
+ - ./.docker/php/custom.ini:/etc/php/conf.d/99-custom.ini
46
50
47
51
mysql :
48
52
image : mysql:latest
@@ -60,3 +64,7 @@ services:
60
64
selenium :
61
65
image : ${SELENIUM_IMAGE:-selenium/standalone-chrome:111.0}
62
66
network_mode : service:nginx
67
+
68
+ mail :
69
+ image : axllent/mailpit
70
+ network_mode : service:nginx
You can’t perform that action at this time.
0 commit comments