Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add description for Azure url format #1337

Merged
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion content/docs/command-reference/import-url.md
Original file line number Diff line number Diff line change
Expand Up @@ -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://[email protected]:/path/to/data` |
| `hdfs` | HDFS to file (explanation below) | `hdfs://[email protected]/path/to/data.csv` |
| `http` | HTTP to file with _strong ETag_ (explanation below) | `https://example.com/path/to/data.csv` |
Expand Down
13 changes: 13 additions & 0 deletions content/docs/user-guide/external-dependencies.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@ supported:
- Local files and directories outside of your <abbr>workspace</abbr>
- SSH
- Amazon S3
- Microsoft Azure Blob Storage
- Google Cloud Storage
- HDFS
- HTTP
Expand Down Expand Up @@ -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
Expand Down