File tree 3 files changed +10
-0
lines changed
3 files changed +10
-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 @@ -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 : skpr/mtk-mysql-empty:latest
@@ -51,3 +55,7 @@ services:
51
55
selenium :
52
56
image : ${SELENIUM_IMAGE:-selenium/standalone-chrome}
53
57
network_mode : service:nginx
58
+
59
+ mailpit :
60
+ image : axllent/mailpit
61
+ network_mode : service:nginx
You can’t perform that action at this time.
0 commit comments