-
Notifications
You must be signed in to change notification settings - Fork 1
/
docker-compose.yml
40 lines (36 loc) · 1.06 KB
/
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
34
35
36
37
38
39
40
version: "3.0"
#This file combines all the edge services and our services so that it can be deployed as a unit
services:
opcua-simulator:
image: "predixedge/predix-edge-opcua-simulator:1.0.10"
networks:
- predix-edge-broker_net
ports:
- 4334:4334
opcua:
image: "dtr.predix.io/predix-edge/protocol-adapter-opcua:amd64-1.1.0"
environment:
config: "/config/config-opcua.json"
networks:
- predix-edge-broker_net
cloud_gateway:
image: "dtr.predix.io/predix-edge/cloud-gateway:amd64-1.1.0"
environment:
config: "/config/config-cloud-gateway.json"
env_file:
- /etc/environment
networks:
- predix-edge-broker_net
edge-app:
image: "predixedge/predix-edge-sample-scaler-python:1.0.6"
environment:
- PYTHONUNBUFFERED=0 # To shows print statements in docker logs
- BROKER=predix-edge-broker
- SUB_TOPIC=app_data
- PUB_TOPIC=timeseries_data
- TAG_NAME=My.App.DOUBLE1
networks:
- predix-edge-broker_net
networks:
predix-edge-broker_net:
external: true