Skip to content

Commit

Permalink
Update images
Browse files Browse the repository at this point in the history
  • Loading branch information
kifj committed Mar 23, 2024
1 parent 742fd61 commit 72926a5
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
8 changes: 4 additions & 4 deletions src/main/docker/stomp-test/docker-compose.yml
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
version: '3'
services:
etcd:
image: quay.io/coreos/etcd:v3.5.11
image: quay.io/coreos/etcd:v3.5.12
container_name: etcd
command: ["etcd", "--listen-client-urls", "http://0.0.0.0:2379,http://0.0.0.0:4001", "--advertise-client-urls", "http://etcd:2379,http://etcd:4001"]
command: ["etcd", "--listen-client-urls", "http://0.0.0.0:2379", "--advertise-client-urls", "http://etcd:2379"]
environment:
- ETCD_ENABLE_V2=true
db:
Expand All @@ -27,7 +27,7 @@ services:
wildfly:
image: registry.x1/j7beck/x1-wildfly-jar-stomp-test:1.8.0-SNAPSHOT
environment:
- X1_SERVICE_REGISTRY_ETCD=http://etcd:4001
- X1_SERVICE_REGISTRY_ETCD=http://etcd:2379
- X1_SERVICE_REGISTRY_STAGE=docker
- OTEL_COLLECTOR=otel-collector
- OTEL_SDK_DISABLED=false
Expand All @@ -45,7 +45,7 @@ services:
- 8080:8080
- 8443:8443
otel-collector:
image: otel/opentelemetry-collector-contrib:0.95.0
image: otel/opentelemetry-collector-contrib:0.96.0
restart: always
command: ["--config=/etc/otel-collector-config.yaml"]
volumes:
Expand Down
2 changes: 1 addition & 1 deletion src/test/java/x1/arquillian/Containers.java
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ public final class Containers implements ArquillianTestContainers {
DockerImageName.parse("registry.x1/j7beck/x1-postgres-stomp-test:1.8")).withNetwork(network)
.withNetworkAliases("db");

private GenericContainer<?> etcd = new GenericContainer<>(DockerImageName.parse("quay.io/coreos/etcd:v3.5.11"))
private GenericContainer<?> etcd = new GenericContainer<>(DockerImageName.parse("quay.io/coreos/etcd:v3.5.12"))
.withEnv("ETCD_ENABLE_V2", "true").withNetwork(network).withNetworkAliases("etcd").withCommand("etcd",
"--listen-client-urls", "http://0.0.0.0:2379", "--advertise-client-urls", "http://etcd:2379");

Expand Down

0 comments on commit 72926a5

Please sign in to comment.