Skip to content

Commit

Permalink
mqtt: use the official Eclipse Mosquitto image (#3004)
Browse files Browse the repository at this point in the history
  • Loading branch information
ennru committed Aug 29, 2023
1 parent c4eab88 commit f77d1ae
Show file tree
Hide file tree
Showing 5 changed files with 12 additions and 5 deletions.
9 changes: 6 additions & 3 deletions docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
# To start all docker containers required to execute the tests locally run:
# docker-compose up

version: '2.2'
version: '3.7'
services:
amazoneventbridge:
image: localstack/localstack:0.10.6
Expand Down Expand Up @@ -214,11 +214,14 @@ services:
ports:
- "8086:8086"
mqtt:
image: toke/mosquitto
image: eclipse-mosquitto:2.0
user: 1000:1000
ports:
- "1883:1883"
volumes:
- ./mqtt/src/test/travis:/mqtt/config/conf.d
- ./mqtt/src/test/mosquitto:/mosquitto:rw
networks:
- default
orientdb:
image: orientdb:3.1.9
ports:
Expand Down
File renamed without changes.
6 changes: 6 additions & 0 deletions mqtt/src/test/mosquitto/config/mosquitto.conf
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
# https://mosquitto.org/man/mosquitto-conf-5.html
listener 1883
allow_anonymous true

password_file /mosquitto/config/password
acl_file /mosquitto/config/acl
File renamed without changes.
2 changes: 0 additions & 2 deletions mqtt/src/test/travis/auth.conf

This file was deleted.

0 comments on commit f77d1ae

Please sign in to comment.