8000 Update (#2) · Redoykumar/laravel-docker@2e2cea7 · GitHub
[go: up one dir, main page]

Skip to content

Commit 2e2cea7

Browse files
authored
Update (refactorian#2)
1 parent 4fe9373 commit 2e2cea7

File tree

4 files changed

+11
-10
lines changed

4 files changed

+11
-10
lines changed

.docker/php/php.ini

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
; Example
22

3-
[Date]
4-
date.timezone = "Asia/Tokyo"
3+
; [Date]
4+
; date.timezone = "Asia/Tokyo"
55

6-
[mbstring]
7-
mbstring.language = Japanese
6+
; [mbstring]
7+
; mbstring.language = Japanese

README.md

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,12 +3,13 @@
33
# Laravel Docker Starter
44
Laravel Docker Starter Kit
55

6-
- PHP v8.2.5
76
- Laravel v10.7.1
7+
- PHP v8.2.5
8+
- MariaDB v10.11
89

910
# 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)
1213

1314
# How To Deploy
1415

composer.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,9 +47,9 @@
4747
"@php artisan key:generate --ansi"
4848
],
4949
"setup": [
50+
"composer install",
5051
"php -r \"file_exists('.env') || copy('.env.example', '.env');\"",
5152
"php artisan key:generate",
52-
"composer install",
5353
"npm install",
5454
"npm run build"
5555
]

docker-compose.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ services:
3333
####################################################################################################
3434
db:
3535
container_name: laravel_db
36-
image: mariadb:10.5
36+
image: mariadb:10.11
3737
ports:
3838
- 3306:3306
3939
volumes:
@@ -45,4 +45,4 @@ services:
4545
MYSQL_DATABASE: laravel_db_name
4646
MYSQL_USER: laravel_db_user
4747
MYSQL_PASSWORD: laravel_user_pass
48-
TZ: Asia/Tokyo
48+
# TZ: Asia/Tokyo

0 commit comments

Comments
 (0)
0