-
Notifications
You must be signed in to change notification settings - Fork 41
Description
I'm using devcontainers and docker-compose to set up a dev environment that is entirely offline; as part of this, I'm using Azurite in a sidecar container for storage scenarios.
The problem is, although I can manually attach to my azurite container via the UI in the normal way, I haven't yet found a way to "save" the attachment/connection to azurite so that it's always there if I clone the repository on a new machine, or if I share it with another programmer. The primary use-case here is so that I don't have to make it an instruction in a README or something.
I don't care if this ends up being a specific environment variable (Copilot is insisting I can use AZURE_STORAGE_CONNECTION_STRING_*
, but that doesn't work) that I can add to my containerEnv
, or if it's a new setting I can add to the customization section.