File tree 11 files changed +32
-11
lines changed
11 files changed +32
-11
lines changed Original file line number Diff line number Diff line change 33
33
push : true
34
34
tags : |
35
35
markoshust/magento-php:8.1-fpm
36
- markoshust/magento-php:8.1-fpm-6
36
+ markoshust/magento-php:8.1-fpm-7
Original file line number Diff line number Diff line change 33
33
push : true
34
34
tags : |
35
35
markoshust/magento-php:8.2-fpm
36
- markoshust/magento-php:8.2-fpm-5
36
+ markoshust/magento-php:8.2-fpm-6
Original file line number Diff line number Diff line change 33
33
push : true
34
34
tags : |
35
35
markoshust/magento-php:8.3-fpm
36
- markoshust/magento-php:8.3-fpm-3
36
+ markoshust/magento-php:8.3-fpm-4
Original file line number Diff line number Diff line change @@ -4,6 +4,15 @@ All notable changes to this project will be documented in this file.
4
4
The format is based on [ Keep a Changelog] ( http://keepachangelog.com/en/1.0.0/ )
5
5
and this project adheres to [ Semantic Versioning] ( http://semver.org/spec/v2.0.0.html ) .
6
6
7
+ ## [ 49.1.0] - 2024-01-31
8
+
9
+ ### Added
10
+ - Added ` generated ` and ` var ` folders as mounted directories in ` compose.dev.yaml ` for easier debugging [ PR #1284 ] ( https://github.com/markshust/docker-magento/pull/1284 )
11
+ - Added options to ` php.ini ` to allow for automatic Xdebug profiling [ PR #1284 ] ( https://github.com/markshust/docker-magento/pull/1284 )
12
+
13
+ ### Updated
14
+ - Mailcatcher tagged to version 0.10.0 [ PR #912 ] ( https://github.com/markshust/docker-magento/pull/912 )
15
+
7
16
## [ 49.0.0] - 2024-01-15
8
17
9
18
### Updated
Original file line number Diff line number Diff line change @@ -33,9 +33,9 @@ View Dockerfiles for the latest tags:
33
33
- [ ` 1.22 ` , ` 1.22-0 ` ] ( images/nginx/1.22 )
34
34
- [ ` 1.24 ` , ` 1.24-0 ` ] ( images/nginx/1.24 )
35
35
- [ markoshust/magento-php (Docker Hub)] ( https://hub.docker.com/r/markoshust/magento-php/ )
36
- - [ ` 8.1-fpm ` , ` 8.1-fpm-6 ` ] ( images/php/8.1 )
37
- - [ ` 8.2-fpm ` , ` 8.2-fpm-5 ` ] ( images/php/8.2 )
38
- - [ ` 8.3-fpm ` , ` 8.3-fpm-3 ` ] ( images/php/8.3 )
36
+ - [ ` 8.1-fpm ` , ` 8.1-fpm-7 ` ] ( images/php/8.1 )
37
+ - [ ` 8.2-fpm ` , ` 8.2-fpm-6 ` ] ( images/php/8.2 )
38
+ - [ ` 8.3-fpm ` , ` 8.3-fpm-4 ` ] ( images/php/8.3 )
39
39
- [ ` 8.4-fpm-dev ` ] ( images/php/8.4 )
40
40
- [ markoshust/magento-opensearch (Docker Hub)] ( https://hub.docker.com/r/markoshust/magento-opensearch/ )
41
41
- [ ` 1.2 ` , ` 1.2-0 ` ] ( images/opensearch/1.2 )
Original file line number Diff line number Diff line change @@ -12,11 +12,11 @@ services:
12
12
- ./src/dev/tools/grunt/configs:/var/www/html/dev/tools/grunt/configs:cached
13
13
- ./src/nginx.conf.sample:/var/www/html/nginx.conf:cached
14
14
- ./src/package.json.sample:/var/www/html/package.json:cached
15
+ - ./src/generated:/var/www/html/generated:cached
16
+ - ./src/var:/var/www/html/var:cached
15
17
# - ./src/auth.json:/var/www/html/auth.json:cached
16
18
# - ./src/m2-hotfixes:/var/www/html/m2-hotfixes:cached
17
19
# - ./src/patches:/var/www/html/patches:cached
18
- # - ./src/var/log:/var/www/html/var/log:cached
19
- # - ./src/var/report:/var/www/html/var/report:cached
20
20
21
21
phpfpm :
22
22
volumes : *appvolumes
Original file line number Diff line number Diff line change 1
1
# # Mark Shust's Docker Configuration for Magento
2
2
# # (https://github.com/markshust/docker-magento)
3
3
# #
4
- # # Version 49.0 .0
4
+ # # Version 49.1 .0
5
5
6
6
# # To use SSH, see https://github.com/markshust/docker-magento#ssh
7
7
# # Linux users, see https://github.com/markshust/docker-magento#linux
@@ -30,7 +30,7 @@ services:
30
30
# - "host.docker.internal:host-gateway"
31
31
32
32
phpfpm :
33
- image : markoshust/magento-php:8.3-fpm-3
33
+ image : markoshust/magento-php:8.3-fpm-4
34
34
volumes : *appvolumes
35
35
env_file : env/phpfpm.env
36
36
# extra_hosts: *appextrahosts
@@ -117,7 +117,7 @@ services:
117
117
env_file : env/rabbitmq.env
118
118
119
119
mailcatcher :
120
- image : sj26/mailcatcher
120
+ image : sj26/mailcatcher:v0.10.0
121
121
ports :
122
122
- " 1080:1080"
123
123
Original file line number Diff line number Diff line change @@ -7,6 +7,9 @@ date.timezone = UTC
7
7
xdebug.mode = off
8
8
xdebug.client_host = host.docker.internal
9
9
xdebug.idekey = PHPSTORM
10
+ xdebug.start_with_request = trigger
11
+ xdebug.output_dir = /var/www/html/var/profile
12
+ xdebug.profiler_output_name = cachegrind.out.%t.%p
10
13
11
14
upload_max_filesize = 100M
12
15
post_max_size = 100M
Original file line number Diff line number Diff line change @@ -7,6 +7,9 @@ date.timezone = UTC
7
7
xdebug.mode = off
8
8
xdebug.client_host = host.docker.internal
9
9
xdebug.idekey = PHPSTORM
10
+ xdebug.start_with_request = trigger
11
+ xdebug.output_dir = /var/www/html/var/profile
12
+ xdebug.profiler_output_name = cachegrind.out.%t.%p
10
13
11
14
upload_max_filesize = 100M
12
15
post_max_size = 100M
Original file line number Diff line number Diff line change @@ -7,6 +7,9 @@ date.timezone = UTC
7
7
xdebug.mode = off
8
8
xdebug.client_host = host.docker.internal
9
9
xdebug.idekey = PHPSTORM
10
+ xdebug.start_with_request = trigger
11
+ xdebug.output_dir = /var/www/html/var/profile
12
+ xdebug.profiler_output_name = cachegrind.out.%t.%p
10
13
11
14
upload_max_filesize = 100M
12
15
post_max_size = 100M
Original file line number Diff line number Diff line change @@ -7,6 +7,9 @@ date.timezone = UTC
7
7
xdebug.mode = off
8
8
xdebug.client_host = host.docker.internal
9
9
xdebug.idekey = PHPSTORM
10
+ xdebug.start_with_request = trigger
11
+ xdebug.output_dir = /var/www/html/var/profile
12
+ xdebug.profiler_output_name = cachegrind.out.%t.%p
10
13
11
14
upload_max_filesize = 100M
12
15
post_max_size = 100M
You can’t perform that action at this time.
0 commit comments