-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcompose.yml
51 lines (47 loc) · 1.13 KB
/
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
41
42
43
44
45
46
47
48
49
50
51
# start with: docker compose up -d
# stop with: docker compose down
# Sensor Values can be found under ./SensorValues
services:
# Required if no public MQTT Broker available
broker:
image: hivemq/hivemq-ce:2023.4
restart: unless-stopped
environment:
- HIVEMQ_LOG_LEVEL=ERROR
networks:
- elastic-ai-network
ports:
- "1883:1883"
# OPTIONAL: Overview of currently available apps/nodes
monitor:
image: ghcr.io/es-ude/elastic-ai.cloud.applications.monitor:latest
restart: unless-stopped
networks:
- elastic-ai-network
ports:
- "80:80"
environment:
- HOST_IP=${HOST_IP}
command:
- "--broker-address"
- "broker"
- "--broker-port"
- "1883"
ball_challenge:
image: ghcr.io/es-ude/ballchallenge:latest
volumes:
- ./SensorValues:/SensorValues
ports:
- "81:80"
networks:
- elastic-ai-network
environment:
- PUBLIC_IP=${HOST_IP}
- BROKER_PORT=1883
- BROKER_IP=broker
- CAMERA_PORT=8888
- CAMERA_IP=127.0.0.1
networks:
elastic-ai-network:
external: false
name: elastic-ai