File tree Expand file tree Collapse file tree 3 files changed +4
-4
lines changed Expand file tree Collapse file tree 3 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -5,13 +5,13 @@ services:
5
5
ports :
6
6
- " 80:80"
7
7
volumes :
8
- - ./:/code
8
+ - ./:/var/www/html
9
9
- ./docker/conf/default.conf:/etc/nginx/conf.d/default.conf
10
10
php :
11
11
build :
12
12
context : ./docker
13
13
volumes :
14
- - ./:/code
14
+ - ./:/var/www/html
15
15
- ./docker/php/xdebug.ini:/usr/local/etc/php/conf.d/xdebug.ini
16
16
mysql :
17
17
image : mysql:latest
Original file line number Diff line number Diff line change 1
- FROM php:8.1 -fpm
1
+ FROM php:8.2 -fpm
2
2
3
3
ARG WITH_XDEBUG=true
4
4
Original file line number Diff line number Diff line change 4
4
server_name localhost;
5
5
error_log /var/log/nginx/error.log;
6
6
access_log /var/log/nginx/access.log;
7
- root /code /public;
7
+ root /var/www/html /public;
8
8
9
9
location / {
10
10
try_files $uri $uri.js /index.php$is_args$args;
You can’t perform that action at this time.
0 commit comments