We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ce1554b commit 976bdf1Copy full SHA for 976bdf1
service/src/intTest/java/uk/nhs/adaptors/gp2gp/testcontainers/ActiveMqContainer.java
@@ -6,10 +6,9 @@ public final class ActiveMqContainer extends GenericContainer<ActiveMqContainer>
6
7
public static final int ACTIVEMQ_PORT = 5672;
8
private static ActiveMqContainer container;
9
- public static final String ACTIVEMQ_VERSION = "8.0.15";
10
11
private ActiveMqContainer() {
12
- super("docker-activemq:" + ACTIVEMQ_VERSION);
+ super("docker-activemq:latest");
13
addExposedPort(ACTIVEMQ_PORT);
14
}
15
0 commit comments