2020-06-03 19:26:35 +02:00
|
|
|
version: "3.7"
|
|
|
|
|
|
|
|
networks:
|
|
|
|
localnet:
|
|
|
|
|
|
|
|
x-op-service-default: &service_default
|
2020-06-08 23:17:16 +02:00
|
|
|
restart: always
|
2020-06-03 19:26:35 +02:00
|
|
|
init: true
|
2020-06-08 23:17:16 +02:00
|
|
|
tty: true
|
2020-06-03 19:26:35 +02:00
|
|
|
|
|
|
|
services:
|
|
|
|
device-http:
|
|
|
|
<<: *service_default
|
2020-06-08 23:17:16 +02:00
|
|
|
build:
|
|
|
|
context: ../simulator
|
|
|
|
image: daniviga/freedcs-device-simulator
|
2020-06-03 19:26:35 +02:00
|
|
|
environment:
|
2020-06-08 23:17:16 +02:00
|
|
|
IOT_HTTP: "http://192.168.10.123:8000"
|
2020-06-03 19:26:35 +02:00
|
|
|
# IOT_SERIAL: "abcd1234"
|
|
|
|
# IOT_DELAY: 10
|
2020-06-04 18:06:37 +02:00
|
|
|
IOT_DEBUG: 1
|
2020-06-03 19:26:35 +02:00
|
|
|
networks:
|
|
|
|
- localnet
|
2020-06-08 23:17:16 +02:00
|
|
|
|
|
|
|
device-mqtt:
|
|
|
|
<<: *service_default
|
|
|
|
build:
|
|
|
|
context: ../simulator
|
|
|
|
image: daniviga/freedcs-device-simulator
|
|
|
|
environment:
|
|
|
|
IOT_HTTP: "http://192.168.10.123:8000"
|
|
|
|
IOT_MQTT: "192.168.10.123:1883"
|
|
|
|
# IOT_SERIAL: "abcd1234"
|
|
|
|
# IOT_DELAY: 10
|
|
|
|
IOT_DEBUG: 1
|
|
|
|
command: ["/opt/freedcs/device_simulator.py", "-t", "mqtt"]
|
|
|
|
networks:
|
|
|
|
- localnet
|