mirror of
https://github.com/livebook-dev/livebook.git
synced 2025-10-18 01:16:29 +08:00
Docs for shared file storages (#2318)
This commit is contained in:
parent
2ed8021dbd
commit
d0e775d7c2
5 changed files with 40 additions and 2 deletions
BIN
docs/images/add_shared_file_storage.png
Normal file
BIN
docs/images/add_shared_file_storage.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 102 KiB |
11
docs/teams/intro_to_teams.md
Normal file
11
docs/teams/intro_to_teams.md
Normal file
|
@ -0,0 +1,11 @@
|
|||
# Intro to Livebook Teams
|
||||
|
||||
[Livebook Teams](https://livebook.dev/teams/?ref=docs) is a product that amplifies Livebook with features designed for teams and businesses.
|
||||
|
||||
It's currently in free beta. You can [join the beta waiting list here](https://livebook.dev/teams/?ref=docs) to get early access.
|
||||
|
||||
## Current features in the beta
|
||||
|
||||
- [Shared secrets management](shared_secrets.md)
|
||||
- [Shared file storages](shared_file_storages.md)
|
||||
- [Airgapped notebook deployment with Zero Trust Authentication](../deployment/docker.md#deploy-notebooks-as-applications)
|
25
docs/teams/shared_file_storages.md
Normal file
25
docs/teams/shared_file_storages.md
Normal file
|
@ -0,0 +1,25 @@
|
|||
# Shared file storages
|
||||
|
||||
## Overview
|
||||
|
||||
This feature allows your team to share the configuration of S3-compatible storages.
|
||||
|
||||
Livebook file storages are used to store notebooks and their files.
|
||||
|
||||
Whenever you add (update or detach) a file storage to your organization hub, Livebook Teams will synchronize that with the Livebook of every member of your organization.
|
||||
|
||||

|
||||
|
||||
## How it works
|
||||
|
||||
Here's a video showing how that feature works.
|
||||
|
||||
<iframe width="560" height="315" src="https://www.youtube-nocookie.com/embed/NkrTHShRCYE?si=9LhjlER91nyEbZxi" title="YouTube video player" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share" allowfullscreen></iframe>
|
||||
|
||||
## Security strengths
|
||||
|
||||
Livebook Teams cannot access the credentials of your S3 (compatible) account.
|
||||
|
||||
Livebook encrypts your S3 credentials locally in your machine using your Teams key. Then, they're sent encrypted to Livebook Teams servers.
|
||||
|
||||
When a new synchronization is needed, Livebook Teams sends the encrypted credentials to the Livebook of team members, and their Livebook decrypts that in their local machines using the same Teams key.
|
|
@ -26,4 +26,4 @@ Livebook Teams cannot access the plain text version of your organization's secre
|
|||
|
||||
Livebook encrypts your secrets locally in your machine using your Teams key. Then, the secret is sent encrypted to Livebook Teams servers.
|
||||
|
||||
When a new synchronization is needed, Livebook Teams sends the encrypted secret to the Livebook of team members, and their Livebook decrypts the secret in their local machines using the same Teams key.
|
||||
When a new synchronization is needed, Livebook Teams sends the encrypted secret to the Livebook of team members, and their Livebook decrypts the secret in their local machines using the same Teams key.
|
||||
|
|
4
mix.exs
4
mix.exs
|
@ -217,7 +217,9 @@ defmodule Livebook.MixProject do
|
|||
"docs/deployment/cloudflare.md",
|
||||
"docs/deployment/google_iap.md",
|
||||
"docs/deployment/tailscale.md",
|
||||
"docs/teams/shared_secrets.md"
|
||||
"docs/teams/intro_to_teams.md",
|
||||
"docs/teams/shared_secrets.md",
|
||||
"docs/teams/shared_file_storages.md"
|
||||
]
|
||||
end
|
||||
end
|
||||
|
|
Loading…
Add table
Reference in a new issue