10.3.3
Linux
azcopy copy http://azurite:10000/devstoreaccount1/sample/Cont_20190213/0000574133.jpg
azcopy copy http://localhost:10000/devstoreaccount1/sample/Cont_20190213/0000574133.jpg
We use Azurite as our local storage. A sidecar container wants to download data by invoking azcopy. But it always show failed to parse user input due to error: the inferred source/destination combination is currently not supported. Please post an issue on Github if support for this scenario is desired.
No
This looks like an issue that we are fixing here: https://github.com/Azure/azure-storage-azcopy/pull/743
The fix should be released in version 10.4. (And to answer the obvious question, sorry, we don't pre-announce release dates).
Hi there! This should be fixed in 10.4. Enjoy!
BTW You will need to use the from-to parameter when using Azurite. AzCopy will tell you that when you run it, if you forget.
Here are some examples of how to use it:
azcopy copy /data/foo http://azurite:10000/devstoreaccount1/sample/foo --from-to LocalBlob
azcopy copy http://azurite:10000/devstoreaccount1/sample/foo /data/foo --from-to BlobLocal
Most helpful comment
BTW You will need to use the from-to parameter when using Azurite. AzCopy will tell you that when you run it, if you forget.
Here are some examples of how to use it: