Skip to content

Commit 2001eba

Browse files
committed
updated
1 parent 34afb55 commit 2001eba

File tree

2 files changed

+106
-19
lines changed

2 files changed

+106
-19
lines changed

README.md

Lines changed: 105 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -51,21 +51,108 @@ This solution enables the streamlined creation of Laravel projects without any a
5151
```
5252
make up
5353
```
54-
<table>
55-
<thead>
56-
<tr>
57-
<th>Variable</th>
58-
<th>Description</th>
59-
</tr>
60-
</thead>
61-
<tbody>
62-
<tr>
63-
<td>data1</td>
64-
<td>data2</td>
65-
</tr>
66-
<tr>
67-
<td>data11</td>
68-
<td>data12</td>
69-
</tr>
70-
</tbody>
71-
</table>
54+
55+
## 🔖 ENV Explanation
56+
57+
### .env
58+
https://github.com/Easy2-Dev/Docker-for-Laravel/blob/0d34455fd4a94a40c2d1a16b5ac025b04bec3a9a/temp.env#L1-L12
59+
60+
<table>
61+
<thead>
62+
<tr>
63+
<th>Variable</th>
64+
<th>Description</th>
65+
</tr>
66+
</thead>
67+
<tbody>
68+
<tr>
69+
<td>data1</td>
70+
<td>data2</td>
71+
</tr>
72+
<tr>
73+
<td>data11</td>
74+
<td>data12</td>
75+
</tr>
76+
</tbody>
77+
</table>
78+
79+
80+
### adminer.env
81+
https://github.com/Easy2-Dev/Docker-for-Laravel/blob/34afb556d2b45b264ae71840c5f3a8aa5b9404d6/envs/temp.adminer.env#L1
82+
83+
<table>
84+
<thead>
85+
<tr>
86+
<th>Variable</th>
87+
<th>Description</th>
88+
</tr>
89+
</thead>
90+
<tbody>
91+
<tr>
92+
<td>ADMINER_DEFAULT_SERVER</td>
93+
<td>data2</td>
94+
</tr>
95+
</tbody>
96+
</table>
97+
98+
99+
### app.env
100+
https://github.com/Easy2-Dev/Docker-for-Laravel/blob/34afb556d2b45b264ae71840c5f3a8aa5b9404d6/envs/temp.app.env#L1-L58
101+
102+
<table>
103+
<thead>
104+
<tr>
105+
<th>Variable</th>
106+
<th>Description</th>
107+
</tr>
108+
</thead>
109+
<tbody>
110+
<tr>
111+
<td>DB_CONNECTION</td>
112+
<td>data2</td>
113+
</tr>
114+
<tr>
115+
<td>DB_HOST</td>
116+
<td>data12</td>
117+
</tr>
118+
<tr>
119+
<td>DB_PORT</td>
120+
<td>data12</td>
121+
</tr>
122+
<tr>
123+
<td>DB_DATABASE</td>
124+
<td>data12</td>
125+
</tr>
126+
<tr>
127+
<td>DB_USERNAME</td>
128+
<td>data12</td>
129+
</tr>
130+
<tr>
131+
<td>DB_PASSWORD</td>
132+
<td>data12</td>
133+
</tr>
134+
</tbody>
135+
</table>
136+
137+
138+
### mysql.env
139+
https://github.com/Easy2-Dev/Docker-for-Laravel/blob/34afb556d2b45b264ae71840c5f3a8aa5b9404d6/envs/temp.mysql.env#L1-L2
140+
141+
<table>
142+
<thead>
143+
<tr>
144+
<th>Variable</th>
145+
<th>Description</th>
146+
</tr>
147+
</thead>
148+
<tbody>
149+
<tr>
150+
<td>MYSQL_ROOT_PASSWORD</td>
151+
<td>data2</td>
152+
</tr>
153+
<tr>
154+
<td>MYSQL_DATABASE</td>
155+
<td>data12</td>
156+
</tr>
157+
</tbody>
158+
</table>

envs/temp.app.env

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ LOG_DEPRECATIONS_CHANNEL=null
99
LOG_LEVEL=debug
1010

1111
DB_CONNECTION=mysql
12-
DB_HOST=192.168.43.216
12+
DB_HOST=db
1313
DB_PORT=3306
1414
DB_DATABASE=laravel
1515
DB_USERNAME=root

0 commit comments

Comments
 (0)