droppy icon indicating copy to clipboard operation
droppy copied to clipboard

Multiple Workspaces

Open cp1797 opened this issue 8 years ago • 3 comments

Is it possible to have multiple workspaces for each user? (So that each one has a private storage sorta thing)

cp1797 avatar Jul 27 '17 18:07 cp1797

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.

silverwind avatar Jul 27 '17 19:07 silverwind

Perhaps in the future then. Label this as a feature maybe ?

cp1797 avatar Jul 28 '17 01:07 cp1797

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

sprnza avatar Dec 03 '18 07:12 sprnza