We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ea2f870 commit 2b9563aCopy full SHA for 2b9563a
.github/workflows/ci.yaml
@@ -11,16 +11,14 @@ jobs:
11
12
services:
13
mysql:
14
- image: mysql:8
15
- env:
16
- MYSQL_ALLOW_EMPTY_PASSWORD: yes
17
- MYSQL_DATABASE: laravel
18
- args: [
19
- "--default-authentication-plugin=mysql_native_password"
20
- ]
21
- ports:
22
- - 3306:3306
23
- options: --health-cmd="mysqladmin ping" --health-interval=10s --health-timeout=5s --health-retries=3
+ image: mysql:8
+ env:
+ MYSQL_ALLOW_EMPTY_PASSWORD: yes
+ MYSQL_DATABASE: laravel
+ MYSQL_ROOT_PASSWORD: root
+ ports:
+ - 3306:3306
+ options: --default-authentication-plugin=mysql_native_password --health-cmd="mysqladmin ping" --health-interval=10s --health-timeout=5s --health-retries=3
24
25
strategy:
26
fail-fast: true
0 commit comments