-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathdocker-compose.stack.yml
More file actions
72 lines (72 loc) · 1.92 KB
/
docker-compose.stack.yml
File metadata and controls
72 lines (72 loc) · 1.92 KB
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
72
version: '3.6'
services:
mosquitto:
platform: linux/${ARCH-amd64}
build:
context: ../iot-event-analytics/docker/mosquitto
labels:
arch: ${ARCH-amd64}
dockerfile: Dockerfile.${ARCH-amd64}
args:
- HTTP_PROXY=${DOCKER_HTTP_PROXY}
- HTTPS_PROXY=${DOCKER_HTTPS_PROXY}
ports:
- '1883:1883'
networks:
- edge-platform-network
volumes:
- type: bind
source: "${CONFIG_DIR}/mosquitto"
target: "/mosquitto/config"
iotea:
platform: linux/${ARCH-amd64}
build:
context: ../iot-event-analytics
labels:
arch: ${ARCH-amd64}
dockerfile: docker/platform/Dockerfile.slim.${ARCH-amd64}
args:
- HTTP_PROXY=${DOCKER_HTTP_PROXY}
- HTTPS_PROXY=${DOCKER_HTTPS_PROXY}
networks:
- edge-platform-network
volumes:
- type: bind
source: "${CONFIG_DIR}/iotea"
target: "/app/docker/platform/config"
hal-interface-adapter:
platform: linux/${ARCH-amd64}
build:
context: ../
labels:
arch: ${ARCH-amd64}
dockerfile: src/edge.hal-interface-adapter/Dockerfile.${ARCH-amd64}
args:
- HTTP_PROXY=${DOCKER_HTTP_PROXY}
- HTTPS_PROXY=${DOCKER_HTTPS_PROXY}
networks:
- edge-platform-network
volumes:
- type: bind
source: "${CONFIG_DIR}/hal-interface-adapter/config-no-kuksa"
target: "/app/config"
hal-interface:
platform: linux/${ARCH-amd64}
build:
context: ../
labels:
arch: ${ARCH-amd64}
dockerfile: src/edge.hal-interface/Dockerfile.${ARCH-amd64}
args:
- HTTP_PROXY=${DOCKER_HTTP_PROXY}
- HTTPS_PROXY=${DOCKER_HTTPS_PROXY}
networks:
- edge-platform-network
volumes:
- type: bind
source: "${CONFIG_DIR}/hal-interface"
target: "/app/config"
networks:
edge-platform-network:
name: edge-platform-network
driver: bridge