Skip to content

Commit de820de

Browse files
committed
Improved troubleshooting
1 parent 9356ffc commit de820de

File tree

1 file changed

+15
-2
lines changed

1 file changed

+15
-2
lines changed

documentation/TROUBLESHOOTING.md

Lines changed: 15 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,13 +2,26 @@
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
1011
docker-compose stop
1112
docker-compose rm --force main web
1213
docker-compose build --no-cache main web
1314
docker-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+

0 commit comments

Comments
 (0)