Skip to content

Commit

Permalink
Update eclipse-mosquitto docker image (#486)
Browse files Browse the repository at this point in the history
  • Loading branch information
dnestoro committed Apr 26, 2024
1 parent c1250bd commit 6cd6c93
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
Original file line number Diff line number Diff line change
@@ -1 +1 @@
eclipse-mosquitto:2.0.15
eclipse-mosquitto:2.0.18
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ class Mqttv3Test {
@BeforeAll
void beforeAll() throws IOException, MqttException {
System.out.println("Starting MQTT broker ...");
process = new ProcessBuilder("docker", "run", "--rm", "-p", "1883:1883", "eclipse-mosquitto:2.0.15", "mosquitto", "-c", "/mosquitto-no-auth.conf")
process = new ProcessBuilder("docker", "run", "--rm", "-p", "1883:1883", "eclipse-mosquitto:2.0.18", "mosquitto", "-c", "/mosquitto-no-auth.conf")
.inheritIO()
.start();

Expand Down
Original file line number Diff line number Diff line change
@@ -1 +1 @@
eclipse-mosquitto:2.0.15
eclipse-mosquitto:2.0.18
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ class Mqttv5ClientTest {
@BeforeAll
void beforeAll() throws IOException, MqttException {
System.out.println("Starting MQTT broker ...");
process = new ProcessBuilder("docker", "run", "--rm", "-p", "1883:1883", "eclipse-mosquitto:2.0.15", "mosquitto", "-c", "/mosquitto-no-auth.conf")
process = new ProcessBuilder("docker", "run", "--rm", "-p", "1883:1883", "eclipse-mosquitto:2.0.18", "mosquitto", "-c", "/mosquitto-no-auth.conf")
.inheritIO()
.start();

Expand Down
Original file line number Diff line number Diff line change
@@ -1 +1 @@
FROM eclipse-mosquitto:2.0.15
FROM eclipse-mosquitto:2.0.18

0 comments on commit 6cd6c93

Please sign in to comment.