Kwantum with openmediavault (OMV) #1433
Closed
fschuhmacher
started this conversation in
Show and tell
Replies: 2 comments 1 reply
-
|
"Kwantum" thats a new one. To summarize the issue: However, those paths would then not be recognized or known as deleted by OMV and could not be used there. I consider the consequences critical. you are saying when a share path no longer exists it sticks around? Do you have an example? |
Beta Was this translation helpful? Give feedback.
1 reply
-
|
Am 13.11.25 um 20:47 schrieb Graham Steffaniak:
… "Kwantum" thats a new one.
To summarize the issue:
However, those paths would then not be recognized or known as deleted by
OMV and could not be used there. I consider the consequences critical.
you are saying when a share path no longer exists it sticks around? Do
you have an example?
—
Reply to this email directly, view it on GitHub <https://github.com/
gtsteffaniak/filebrowser#1433#discussioncomment-14962172>,
or unsubscribe <https://github.com/notifications/unsubscribe-auth/
AN7XLUOEWOMXCLXYDUVGLPD34TN6RAVCNFSM6AAAAACKGGJ37SVHI2DSMVQWIX3LMV43URDJONRXK43TNFXW4Q3PNVWWK3TUHMYTIOJWGIYTOMQ>.
You are receiving this because you authored the thread.Message ID:
<gtsteffaniak/filebrowser/repo-discussions/1433/
***@***.***>
|
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
OMV uses “Filesystems” and “Shared Folders” as its basic file structure.
A filesystem is named according to the pattern “/srv/dev-disk-by-uuid-e...b8a6c”, and a Shared Folder underneath it is therefore:
“/srv/dev-disk-by-uuid-e...b8a6c/example-Shared-Folder”.
Almost all administration settings and plugins in OMV refer to Shared Folders. Paths below that level are unknown to the system.
With Kwantum, you can also edit paths at the level directly beneath the filesystem, which in OMV would correspond to “Shared Folders”. However, those paths would then not be recognized or known as deleted by OMV and could not be used there. I consider the consequences critical.
Therefore, I create Shared Folders exclusively in OMV and use Kwantum only at least one level below. To ensure this, I map the following in Filebrowser’s docker-compose:
volumes:
...
with the following entries in the global env file:
FS1=/srv/dev-disk-by-uuid-e...b8a6c
...
Here is my Docker-Compose:
filebrowser
networks:
filebrowser-net:
name: filebrowser-net
services:
filebrowser:
container_name: filebrowser-quantum
image: gtstef/filebrowser:0.8.10-beta
restart: unless-stopped
ports:
- "xxx:80"
environment:
FILEBROWSER_ONLYOFFICE_SECRET: ${JWT_SECRET}
FILEBROWSER_ADMIN_PASSWORD: ${ADMIN_PASSWORD}
TZ: ${TZ}
volumes:
- ${HOMES}/Homes:/HOMES/HOMES
- ${DOCKER}:/DOCKER
- ${RSYNC}:/RSYNC
- ${RSNAPSHOT}:/RSNAPSHOT
- ${KAMERAS}/Kameras:/KAMERAS/KAMERAS
- ${DIVERS}:/DIVERS
- ${DATA}/filebrowser/config.yaml:/home/filebrowser/config.yaml
- ${DATA}/filebrowser/database.db:/home/filebrowser/database.db
- ${DATA}/filebrowser/data:/data
networks:
- filebrowser-net
healthcheck:
test: ["CMD", "curl", "-f", "http://localhost"]
interval: 30s
timeout: 10s
retries: 5
onlyoffice:
container_name: onlyoffice-docserver
image: onlyoffice/documentserver
restart: unless-stopped
ports:
- "851:80"
environment:
JWT_ENABLED: ${JWT_ENABLED}
JWT_SECRET: ${JWT_SECRET}
JWT_HEADER: ${JWT_HEADER}
networks:
- filebrowser-net
healthcheck:
test: ["CMD", "curl", "-f", "http://localhost"]
interval: 30s
timeout: 10s
retries: 5
Beta Was this translation helpful? Give feedback.
All reactions