Repo2docker multiple users

Is it possible to use repo2docker for multiple users sharing one container?

i.e. how do two users use rstudio at the same time?

It’s working well, but we are looking to do this without making a container for each user.

any help would be much appreciated!!!

kind regards

I’d back up a bit and ask why two humans are sharing one container. Is it for collaboration? Is the distinction between users important? Should they have their own files, etc.? repo2docker creates an image with a single user account that launches a single notebook server. The notebook server is fundamentally a single-user server. Two humans can share this server, even though they will both appear as the same system user in the container. Both folks need only the URL and token and/or password for the container to use it at the same time. If you want multiple separate users with their own accounts, try something like JupyterHub. You can use repo2docker images with JupyterHub, but each user would have their own container.

2 Likes

sorry for the later reply. Thanks! This put me on the right track!