You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+7-5Lines changed: 7 additions & 5 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -78,7 +78,7 @@ __Currently supported versions of Magento__
78
78
### Run already existing Magento project
79
79
80
80
1) Add existing project
81
-
- Paste your existing Magento project to magento folder
81
+
- Paste your existing Magento project to magento folder
82
82
83
83
2) Run ```bin/docker/start```
84
84
@@ -116,7 +116,7 @@ Kibana should now be configured to display 5 types of logs: nginx error log (```
116
116
### Configure Xdebug
117
117
118
118
1) Run ```bin/ide/xdebug debug```
119
-
- You can turn off Xdebug by running ```bin/ide/xdebug off``` and turn it on again with ```bin/ide/xdebug debug```, you can also use this command to set all other Xdebug modes (https://xdebug.org/docs/all_settings#mode)
119
+
- You can turn off Xdebug by running ```bin/ide/xdebug off``` and turn it on again with ```bin/ide/xdebug debug```, you can also use this command to set all other Xdebug modes (https://xdebug.org/docs/all_settings#mode)
120
120
2) PhpStorm should offer you automatic setup after you add breakpoint and make http request (open magento.local in a browser) and correct settings should be similar to this:
121
121
122
122
Preferences - PHP - Debug
@@ -130,17 +130,17 @@ Preferences - PHP - Servers
130
130
## Command Reference
131
131
132
132
-``` bin/docker/build ```
133
-
- Build all images for services defined in docker-compose.yml file
133
+
- Build all images for services defined in docker-compose.yml file
134
134
- Accepts service name/s as argument/s in case you want to build one or more specific services
135
135
-``` bin/docker/cleanup ```
136
136
- Stop and remove all containers, images and volumes of the project
137
137
-``` bin/docker/restart ```
138
138
- Restart all services (containers) defined within docker-compose file
139
139
- Accepts service name/s as argument/s in case you want to restart one or more specific services
140
-
-``` bin/docker/start ```
140
+
-``` bin/docker/start ```
141
141
- Start all services (containers) defined within docker-compose file
142
142
- Accepts service name/s as argument/s in case you want to start one or more specific services
143
-
-``` bin/docker/stop ```
143
+
-``` bin/docker/stop ```
144
144
- Stop all services (containers) defined within docker-compose file
145
145
- Accepts service name/s as argument/s in case you want to stop one or more specific services
146
146
-``` bin/docker/variables ```
@@ -168,3 +168,5 @@ Preferences - PHP - Servers
168
168
169
169
- If elasticsearch container randomly stops working, then it is probably running out of RAM. Allocate more RAM to Docker Desktop and/or increase Xmx2g value specified in elasticsearch service configuration in docker-compose.yml and restart the container
170
170
- You might encounter permission issues if you manually delete one of bind mounted folders, because docker will automatically recreate them with root permissions, which means, that your containers won't have write access to them, because all containers are running in rootless mode.
171
+
- If filebeat container stops with the error below, then remove the container and run bin/helpers/ffp and then bin/docker/start
172
+
-```Exiting: error loading config file: config file ("filebeat.yml") can only be writable by the owner but the permissions are "-rw-rw-r--" (to fix the permissions use: 'chmod go-w /usr/share/filebeat/filebeat.yml')```
0 commit comments