-
Notifications
You must be signed in to change notification settings - Fork 9
/
docker-compose-raspberrypi3.yml
49 lines (49 loc) · 1.13 KB
/
docker-compose-raspberrypi3.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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
version: '2'
services:
mqtt:
image: ansi/raspberrypi3-mosquitto
container_name: c-beam
ports:
- '1883:1883'
entrypoint: /usr/local/sbin/mosquitto
influxdb:
image: hypriot/rpi-influxdb
container_name: c-base-influxdb
ports:
- '127.0.0.1:8086:8086'
couchdb:
image: rpidocker/rpi-couchdb
container_name: c-base-couchdb
ports:
- '127.0.0.1:5984:5984'
msgflo:
image: cbase/raspberrypi3-c-flo
container_name: c-flo
environment:
MSGFLO_BROKER: 'mqtt://mqtt:1883'
ports:
- '127.0.0.1:3569:3569'
links:
- mqtt
msgflo_foreign:
image: cbase/raspberrypi3-c-flo
container_name: c-flo-foreign
environment:
MSGFLO_BROKER: 'mqtt://mqtt:1883'
links:
- mqtt
entrypoint: npm run foreign
openmct:
image: cbase/raspberrypi3-cbeam-telemetry-server
container_name: c-base-openmct
entrypoint: node config/c-base.js
environment:
MSGFLO_BROKER: 'mqtt://mqtt:1883'
INFLUX_HOST: influxdb
ports:
- '127.0.0.1:8080:8080'
- '127.0.0.1:8082:8082'
links:
- influxdb
- couchdb
- mqtt