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: docs/IntelOwl/installation.md
+12-9Lines changed: 12 additions & 9 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -358,6 +358,8 @@ Below you can find the additional process required to upgrade from each major ve
358
358
359
359
#### Updating to >=7.0.0 from a 6.x.x version
360
360
361
+
*Note: Version 7.0.0 is not yet officially released; this guide is provided for the upcoming major update.*
362
+
361
363
IntelOwl v7.0.0 updated the base PostgreSQL image from version 16 to version 18. This change is a breaking change for the database data. You have two choices:
362
364
363
365
- **Choice 1: Start from scratch**: Remove your actual database volumes and start from scratch with a new one.
@@ -398,28 +400,29 @@ The database migration procedure is as follows:
398
400
docker container stop intelowl_postgres_16
399
401
docker container rm intelowl_postgres_16
400
402
```
401
-
7. (Optional) Remove the old PostgreSQL volume:
402
-
```bash
403
-
docker volume rm <OLD_POSTGRES_VOLUME>
404
-
```
405
-
8. Start a temporary PostgreSQL 18 container using the new volume name:
403
+
7. Start a temporary PostgreSQL 18 container using the new volume name:
406
404
```bash
407
405
docker run -d --name intelowl_postgres_18 -v intelowl_postgres_data_v18:/var/lib/postgresql/data/ --env-file env_file_postgres library/postgres:18-alpine
0 commit comments