droppy
droppy copied to clipboard
Multiple Workspaces
Is it possible to have multiple workspaces for each user? (So that each one has a private storage sorta thing)
No, that's not possible yet. I'd imagine it could be done by adding a home property to users that can be configured by privileged users in the options. After that, the APIs have to be adjusted to lock that user to the path.
Perhaps in the future then. Label this as a feature maybe ?
Hi there! Just found out that it could be easily worked around using Docker-compose and multiple containers that shares the same config folder but different /files volume. Something like this:
droppy1:
image: silverwind/droppy
environment:
UID: 1000
expose:
- '8989'
volumes:
- ./droppy:/config
- /home/user/droppy1:/files
restart: unless-stopped
droppy2:
image: silverwind/droppy
environment:
UID: 1000
expose:
- '8989'
volumes:
- ./droppy:/config
- /home/user/droppy2:/files
restart: unless-stopped