test: update docker azurite command to skip api check

The sdk update has caused azurite to fail with:
The API version 2025-07-05 is not supported by Azurite

The workaround for now according to
https://github.com/Azure/Azurite/issues/2562
is to tell azurite to skip this check.
This commit is contained in:
Ben McClelland
2025-07-29 09:54:44 -07:00
parent 13c7cb488c
commit 46650314af
+1 -1
View File
@@ -28,7 +28,7 @@ services:
- "10002:10002"
restart: always
hostname: azurite
command: "azurite --oauth basic --cert /tests/certs/azurite.pem --key /tests/certs/azurite-key.pem --blobHost 0.0.0.0"
command: "azurite --oauth basic --cert /tests/certs/azurite.pem --key /tests/certs/azurite-key.pem --blobHost 0.0.0.0 --skipApiVersionCheck"
volumes:
- ./tests/certs:/tests/certs
azuritegw: