We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f4eefee commit aca8b17Copy full SHA for aca8b17
1 file changed
docker-compose.yml
@@ -10,7 +10,7 @@ services:
10
- .docker/config/nginx.conf:/etc/nginx/conf.d/default.conf
11
networks:
12
- dev-network
13
-
+
14
php:
15
image: hellossx/php-fpm
16
volumes:
@@ -23,6 +23,8 @@ services:
23
environment:
24
- MYSQL_ROOT_PASSWORD=vagrant
25
- MYSQL_DATABASE=vagrant
26
+ ports:
27
+ - "3306:3306"
28
29
- .docker/volumes/mysql:/var/lib/mysql
30
@@ -52,14 +54,18 @@ services:
52
54
mailhog:
53
55
image: mailhog/mailhog
56
ports:
- - "8002:8025"
57
+ - "8081:8025"
58
59
60
61
redis:
62
image: tutum/redis
63
+ expose:
64
+ - "6379"
65
66
- REDIS_PASS=**None**
67
+ networks:
68
+ - dev-network
69
70
71
dev-network:
0 commit comments