File tree Expand file tree Collapse file tree 2 files changed +106
-19
lines changed Expand file tree Collapse file tree 2 files changed +106
-19
lines changed Original file line number Diff line number Diff line change @@ -51,21 +51,108 @@ This solution enables the streamlined creation of Laravel projects without any a
51
51
```
52
52
make up
53
53
```
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>
Original file line number Diff line number Diff line change @@ -9,7 +9,7 @@ LOG_DEPRECATIONS_CHANNEL=null
9
9
LOG_LEVEL = debug
10
10
11
11
DB_CONNECTION = mysql
12
- DB_HOST = 192.168.43.216
12
+ DB_HOST = db
13
13
DB_PORT = 3306
14
14
DB_DATABASE = laravel
15
15
DB_USERNAME = root
You can’t perform that action at this time.
0 commit comments