Open tcfialho opened 4 years ago
@tcfialho Thanks for raising the suggestion! We will priority it with other new feature request / fix, if this is a common request on Azurite.
This would be awesome if it was implemented. In the mean time, does anyone know of any workarounds for this until it is implemented?
My usecase: Run azurite in a docker container via docker compose with the path to the SSL cert and key specified.
Is that possible currently?
I think I've just got it working by creating my own docker file, maybe there's a better way though:
FROM node:13.6
RUN npm install -g azurite
CMD ["azurite", "--location", "/some/path/in/a/volume", "--cert", "/some/path/in/a/volume.pem", "--key", "/some/path/in/a/volume-key.pem"]
It's possible make all that parameters as enviroment variables for make easy run in docker-compose enviroment?