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
+14Lines changed: 14 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -74,6 +74,20 @@ The FOSSology web service allows you to configure its database connection using
74
74
-**FOSSOLOGY_DB_PASSWORD:** Password to be used for PostgreSQL connection. Defaults to `fossy`.
75
75
76
76
You can change them if you want to use a different database server or credentials.
77
+
78
+
### Notes on PostgreSQL volume mounts (Docker)
79
+
80
+
When running FOSSology using Docker, the PostgreSQL data directory should follow the mount path recommended by the official Postgres container documentation:
81
+
82
+
https://hub.docker.com/_/postgres
83
+
84
+
Avoid using version-specific internal paths such as:
85
+
86
+
```
87
+
/var/lib/postgresql/16/data
88
+
```
89
+
90
+
These directories may not be persisted as expected when containers are recreated. Always reply on the directory structure defined by the Postgres image.
0 commit comments