feat: Dockerized azure backend to run 2 images: one for azurite, one for azure backend

This commit is contained in:
jonaustin09
2024-01-08 10:07:50 -08:00
committed by Ben McClelland
parent 9bfec719f3
commit 8fc16392d1
4 changed files with 27 additions and 5 deletions
+4 -4
View File
@@ -35,15 +35,15 @@ func azureCommand() *cli.Command {
&cli.StringFlag{
Name: "account",
Usage: "azure account name",
EnvVars: []string{"AZ_ACCESS_KEY"},
EnvVars: []string{"AZ_ACCOUNT_NAME"},
Aliases: []string{"a"},
Destination: &azAccount,
},
&cli.StringFlag{
Name: "account-key",
Name: "access-key",
Usage: "azure account key",
EnvVars: []string{"AZ_ACCOUNT_KEY"},
Aliases: []string{"s"},
EnvVars: []string{"AZ_ACCESS_KEY"},
Aliases: []string{"k"},
Destination: &azKey,
},
&cli.StringFlag{