Skip to content

Commit 0a40f85

Browse files
klu2Aloren
andauthored
#931 update to the latest azurite docker image and to the latest client lib. fix documentation (#932)
Co-authored-by: Anastasiia Smirnova <[email protected]>
1 parent 74de73a commit 0a40f85

File tree

5 files changed

+5
-5
lines changed

5 files changed

+5
-5
lines changed

embedded-azurite/README.adoc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ spring:
4444
blob:
4545
account-name: ${embedded.azurite.account-name}
4646
account-key: ${embedded.azurite.account-key}
47-
blob-endpoint: ${embedded.azurite.blob-endpoint}
47+
endpoint: ${embedded.azurite.blob-endpoint}
4848
----
4949

5050
You can then access all beans from `spring-cloud-azure-starter-storage-blob`, i.e. `BlobServiceClientBuilder`.

embedded-azurite/src/main/java/com/playtika/test/azurite/AzuriteProperties.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,6 @@ public class AzuriteProperties extends CommonContainerProperties {
2626

2727
@Override
2828
public String getDefaultDockerImage() {
29-
return "mcr.microsoft.com/azure-storage/azurite:3.15.0";
29+
return "mcr.microsoft.com/azure-storage/azurite:3.18.0";
3030
}
3131
}

embedded-azurite/src/main/java/com/playtika/test/azurite/EmbeddedAzuriteBootstrapConfiguration.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ private void registerEnvironment(GenericContainer azurite,
4343
AzuriteProperties properties) {
4444

4545
Integer mappedPort = azurite.getMappedPort(properties.getPort());
46-
String host = azurite.getContainerIpAddress();
46+
String host = azurite.getHost();
4747

4848
LinkedHashMap<String, Object> map = new LinkedHashMap<>();
4949
map.put("embedded.azurite.host", host);

embedded-azurite/src/test/resources/application.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,4 +5,4 @@ spring:
55
blob:
66
account-name: ${embedded.azurite.account-name}
77
account-key: ${embedded.azurite.account-key}
8-
blob-endpoint: ${embedded.azurite.blob-endpoint}
8+
endpoint: ${embedded.azurite.blob-endpoint}

testcontainers-spring-boot-parent/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
<spring.cloud.gcp.version>3.2.0</spring.cloud.gcp.version>
2222
<equalsverifier.version>3.10</equalsverifier.version>
2323
<junit-jupiter.version>5.8.2</junit-jupiter.version>
24-
<spring.cloud.azure.version>4.0.0</spring.cloud.azure.version>
24+
<spring.cloud.azure.version>4.2.0</spring.cloud.azure.version>
2525
</properties>
2626

2727
<dependencyManagement>

0 commit comments

Comments
 (0)