Skip to content

Commit ce1554b

Browse files
Created class variable for activemq version
1 parent e736114 commit ce1554b

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

service/src/intTest/java/uk/nhs/adaptors/gp2gp/testcontainers/ActiveMqContainer.java

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,9 +6,10 @@ public final class ActiveMqContainer extends GenericContainer<ActiveMqContainer>
66

77
public static final int ACTIVEMQ_PORT = 5672;
88
private static ActiveMqContainer container;
9+
public static final String ACTIVEMQ_VERSION = "8.0.15";
910

1011
private ActiveMqContainer() {
11-
super("docker-activemq:latest");
12+
super("docker-activemq:" + ACTIVEMQ_VERSION);
1213
addExposedPort(ACTIVEMQ_PORT);
1314
}
1415

0 commit comments

Comments
 (0)