File tree Expand file tree Collapse file tree 4 files changed +11
-10
lines changed Expand file tree Collapse file tree 4 files changed +11
-10
lines changed Original file line number Diff line number Diff line change 1
1
; Example
2
2
3
- [Date]
4
- date.timezone = " Asia/Tokyo"
3
+ ; [Date]
4
+ ; date.timezone = "Asia/Tokyo"
5
5
6
- [mbstring]
7
- mbstring.language = Japanese
6
+ ; [mbstring]
7
+ ; mbstring.language = Japanese
Original file line number Diff line number Diff line change 3
3
# Laravel Docker Starter
4
4
Laravel Docker Starter Kit
5
5
6
- - PHP v8.2.5
7
6
- Laravel v10.7.1
7
+ - PHP v8.2.5
8
+ - MariaDB v10.11
8
9
9
10
# Requirements
10
- 1 . Stable version of [ Docker] ( https://docs.docker.com/engine/install/ )
11
- 2 . Compatible version of [ Docker Compose] ( https://docs.docker.com/compose/install/#install-compose )
11
+ - Stable version of [ Docker] ( https://docs.docker.com/engine/install/ )
12
+ - Compatible version of [ Docker Compose] ( https://docs.docker.com/compose/install/#install-compose )
12
13
13
14
# How To Deploy
14
15
Original file line number Diff line number Diff line change 47
47
" @php artisan key:generate --ansi"
48
48
],
49
49
"setup" : [
50
+ " composer install" ,
50
51
" php -r \" file_exists('.env') || copy('.env.example', '.env');\" " ,
51
52
" php artisan key:generate" ,
52
- " composer install" ,
53
53
" npm install" ,
54
54
" npm run build"
55
55
]
Original file line number Diff line number Diff line change @@ -33,7 +33,7 @@ services:
33
33
# ###################################################################################################
34
34
db :
35
35
container_name : laravel_db
36
- image : mariadb:10.5
36
+ image : mariadb:10.11
37
37
ports :
38
38
- 3306:3306
39
39
volumes :
@@ -45,4 +45,4 @@ services:
45
45
MYSQL_DATABASE : laravel_db_name
46
46
MYSQL_USER : laravel_db_user
47
47
MYSQL_PASSWORD : laravel_user_pass
48
- TZ : Asia/Tokyo
48
+ # TZ: Asia/Tokyo
You can’t perform that action at this time.
0 commit comments