I'm trying to set up my development environment, and I need to use Azure Storage Emulator for my project. Currently I'm running the emu on a VM and my software connects to it.
Is there another way to do this?
Asked
Active
Viewed 4,819 times
3 Answers
5
There is no Azure Storage emulator for Linux and there will be none according to Microsoft response on this customer feedback.
They advise, however, using open-source alternative like Azurite.
Alexey Zimarev
- 256
4
Update 2022
Azurite has replaced the Azure Storage Emulator. See the documentation.
Azurite works, among others, on Ubuntu. From their official repository: "Based on Node.js, Azurite provides cross platform experiences for customers wanting to try Azure Storage easily in a local environment."
joba2ca
- 141
0
Update 2023
For me best way is to use docker:
docker run -p 10000:10000 -p 10001:10001 -p 10002:10002 mcr.microsoft.com/azure-storage/azurite
Stana
- 1