File tree Expand file tree Collapse file tree 2 files changed +14
-6
lines changed Expand file tree Collapse file tree 2 files changed +14
-6
lines changed Original file line number Diff line number Diff line change @@ -12,6 +12,7 @@ This repository currently contains support for PHP 7.2 up to PHP 8.2.1. Just che
12
12
* [ Deployer] ( https://github.com/deployphp/deployer )
13
13
* ZSH
14
14
* Docker-sync / native docker volumes (OS will be detected)
15
+ * Docker container for: redis, rabbitmq and mailcatcher
15
16
16
17
17
18
## Setup
Original file line number Diff line number Diff line change @@ -8,29 +8,36 @@ services:
8
8
MYSQL_ROOT_PASSWORD : root
9
9
MYSQL_DATABASE : root
10
10
ports :
11
- - 3336:3306
11
+ - " 3336:3306"
12
12
php :
13
- image : klizzy/php-base:8.1
13
+ image : klizzy/php-base:8.2. 1
14
14
container_name : klizzy_php
15
15
environment :
16
16
APACHE_DOCUMENT_ROOT : /var/www/public
17
17
volumes :
18
18
- ./www:/var/www
19
19
ports :
20
- - 8080:80
20
+ - " 8080:80"
21
21
redis :
22
22
image : redis:6.2.3
23
23
container_name : klizzy_redis
24
24
ports :
25
- - 6379:6379
25
+ - " 6379:6379"
26
26
rabbitmq :
27
27
image : rabbitmq:3.8.16-management
28
28
container_name : klizzy_rabbitmq
29
29
environment :
30
30
RABBITMQ_DEFAULT_USER : admin
31
31
RABBITMQ_DEFAULT_PASS : admin
32
32
ports :
33
- - 15672:15672
34
- - 5672:5672
33
+ - " 15672:15672"
34
+ - " 5672:5672"
35
+ mailer :
36
+ image : schickling/mailcatcher
37
+ container_name : klizzy_mailcatcher
38
+ restart : unless-stopped
39
+ ports :
40
+ - " 1025"
41
+ - " 1080:1080"
35
42
volumes :
36
43
symfony-docker-volume : {}
You can’t perform that action at this time.
0 commit comments