Skip to content

Commit a434042

Browse files
committed
use the new official Azurite image
1 parent 084aff9 commit a434042

File tree

2 files changed

+4
-3
lines changed

2 files changed

+4
-3
lines changed

scripts/ci/install_start_azurite.sh

+3-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
#!/usr/bin/env bash
2-
docker pull arafato/azurite
2+
AZURITE_IMAGE=mcr.microsoft.com/azure-storage/azurite
3+
docker pull $AZURITE_IMAGE
34
mkdir -p blob_emulator
45
$1/stop_azurite.sh
5-
docker run -e executable=blob -d -t -p 10000:10000 -v blob_emulator:/opt/azurite/folder arafato/azurite
6+
docker run -e executable=blob -d -t -p 10000:10000 -v blob_emulator:/opt/azurite/folder $AZURITE_IMAGE

scripts/ci/stop_azurite.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
11
#!/usr/bin/env bash
2-
docker stop $(docker ps -q --filter ancestor=arafato/azurite)
2+
docker stop $(docker ps -q --filter ancestor=mcr.microsoft.com/azure-storage/azurite)

0 commit comments

Comments
 (0)