We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2349189 commit 6da61c2Copy full SHA for 6da61c2
.github/workflows/test.yml
@@ -29,4 +29,5 @@ jobs:
29
curl -f localhost:8080
30
docker/console id
31
docker/redis-cli info
32
- docker/console node --version
+ docker/console node --version
33
+ docker/console curl -s mailhog:8025 >/dev/null
dev.sh
@@ -1,3 +1,3 @@
1
#!/bin/bash
2
3
-docker-compose up --build app web
+docker-compose up --build app web mailhog
docker-compose.dev.yml
@@ -5,9 +5,16 @@ services:
5
- 127.0.0.1:13306:3306
6
7
app:
8
+ links:
9
+ - mailhog
10
volumes:
11
- ./docker/app/xdebug.ini:/usr/local/etc/php/conf.d/xdebug.ini:ro
12
13
web:
14
ports:
- - $LISTEN_WEB:80
15
+ - $LISTEN_WEB:80
16
+
17
+ mailhog:
18
+ image: mailhog/mailhog
19
+ ports:
20
+ - 127.0.0.1:8025:8025
0 commit comments