File tree Expand file tree Collapse file tree 1 file changed +15
-2
lines changed Expand file tree Collapse file tree 1 file changed +15
-2
lines changed Original file line number Diff line number Diff line change 22
33# Troubleshooting
44
5- ## Startup or (docker) linking errors
5+ ## Startup or (docker) linking errors (safe reset)
66
7- If you got any startup issues you can try to rebuild ` main ` and ` web ` containers:
7+ If you got any startup issues you can try to rebuild ` main ` and ` web ` containers.
8+ You won't lose any data with this way - it's a safe reset.
89
910``` bash
1011docker-compose stop
1112docker-compose rm --force main web
1213docker-compose build --no-cache main web
1314docker-compose up -d
1415```
16+
17+ ## Complete reset
18+
19+ Reset all containers, delete all data (` mysql ` , ` solr ` ..) but not your project files in ` code/ ` !
20+
21+ ``` bash
22+ docker-compose stop
23+ docker-compose rm --force
24+ docker-compose build --no-cache
25+ docker-compose up -d
26+ ```
27+
You can’t perform that action at this time.
0 commit comments