diff --git a/content/docs/command-reference/import-url.md b/content/docs/command-reference/import-url.md index eb232209fc..0346f418da 100644 --- a/content/docs/command-reference/import-url.md +++ b/content/docs/command-reference/import-url.md @@ -55,7 +55,8 @@ DVC supports several types of (local or) remote locations (protocols): | -------- | --------------------------------------------------- | ------------------------------------------ | | `local` | Local path | `/path/to/local/data` | | `s3` | Amazon S3 | `s3://mybucket/data` | -| `gs` | Google Storage | `gs://mybucket/data` | +| `azure` | Microsoft Azure Blob Storage | `azure://my-container-name/path/to/data` | +| `gs` | Google Cloud Storage | `gs://mybucket/data` | | `ssh` | SSH server | `ssh://user@example.com:/path/to/data` | | `hdfs` | HDFS to file (explanation below) | `hdfs://user@example.com/path/to/data.csv` | | `http` | HTTP to file with _strong ETag_ (explanation below) | `https://example.com/path/to/data.csv` | diff --git a/content/docs/user-guide/external-dependencies.md b/content/docs/user-guide/external-dependencies.md index d84415aef9..cb63469371 100644 --- a/content/docs/user-guide/external-dependencies.md +++ b/content/docs/user-guide/external-dependencies.md @@ -20,6 +20,7 @@ supported: - Local files and directories outside of your workspace - SSH - Amazon S3 +- Microsoft Azure Blob Storage - Google Cloud Storage - HDFS - HTTP @@ -64,6 +65,18 @@ $ dvc run -d s3://mybucket/data.txt \ aws s3 cp s3://mybucket/data.txt data.txt ``` +### Microsoft Azure Blob Storage + +```dvc +$ dvc run -d azure://my-container-name/data.txt \ + -o data.txt \ + az storage copy \ + -d data.json \ + --source-account-name my-account \ + --source-container my-container-name \ + --source-blob data.txt +``` + ### Google Cloud Storage ```dvc