-
Notifications
You must be signed in to change notification settings - Fork 3
/
docker-compose.yml
34 lines (31 loc) · 1015 Bytes
/
docker-compose.yml
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
# Use this docker-compose as a one-click start for demo -> simply run "docker-compose up -d" and see logs of python container that it is connected
version: "2.4"
services:
pingpong-python:
build: ./src/
image: ping-pong-python:1.1.0
environment:
- TOPIC_1=topic1
- TOPIC_2=topic2
- MQTT_IP=ie-databus
- MQTT_USER=edge
- MQTT_PASSWORD=edge
mem_limit: 300mb
volumes:
- './publish/:/publish/'
- './cfg-data/:/cfg-data/'
# Network of system apps
networks:
- proxy-redirect
ie-databus: # For local development purposes. Note that preffered databus name changed from 1.0 to 1.1. Legacy old name is "ie_databus".
image: eclipse-mosquitto:1.6
networks:
- proxy-redirect
nodered:
image: nodered/node-red
ports:
- 1880:1880
networks:
- proxy-redirect
networks:
proxy-redirect: