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 2
2
3
3
# Troubleshooting
4
4
5
- ## Startup or (docker) linking errors
5
+ ## Startup or (docker) linking errors (safe reset)
6
6
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.
8
9
9
10
``` bash
10
11
docker-compose stop
11
12
docker-compose rm --force main web
12
13
docker-compose build --no-cache main web
13
14
docker-compose up -d
14
15
```
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