-
Notifications
You must be signed in to change notification settings - Fork 3
/
docker-compose.test.yaml
71 lines (55 loc) · 1.2 KB
/
docker-compose.test.yaml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
version: '3.7'
services:
bisquitt:
build:
context: .
dockerfile: docker/Dockerfile
ports:
- "1883:1883/udp"
environment:
MQTT_HOST: mqtt
PREDEFINED_TOPIC: messages-predefined;17,messages-predefined-qos3;18
DEBUG: 0
BISQUITT_USER: bisquitt
BISQUITT_GROUP: bisquitt
GORACE: halt_on_error=1
depends_on:
- mqtt
bisquitt-dtls:
build:
context: .
dockerfile: docker/Dockerfile
ports:
- "8883:8883/udp"
environment:
MQTT_HOST: mqtt
PREDEFINED_TOPIC: messages-predefined;17,messages-predefined-qos3;18
DTLS_ENABLED: 1
SELF_SIGNED: 1
DEBUG: 0
BISQUITT_USER: bisquitt
BISQUITT_GROUP: bisquitt
GORACE: halt_on_error=1
depends_on:
- mqtt
bisquitt-test:
build:
context: .
dockerfile: docker/Dockerfile
environment:
DEBUG: 0
DEBUG_SHELL: 0
TIMEOUT: 4m
GORACE: halt_on_error=1
volumes:
- "./tests:/tests"
command: /bin/sh /tests/start.sh
depends_on:
- bisquitt
- bisquitt-dtls
mqtt:
image: eclipse-mosquitto:1.6.14
ports:
- "1883:1883"
logging:
driver: none