-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathdocker-compose.yml
44 lines (40 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
41
42
43
44
services:
eventbus:
image: brewblox/mosquitto:develop
ports:
- "1883:1883"
victoria:
image: victoriametrics/victoria-metrics:v1.88.0
command: --envflag.enable=true --envflag.prefix=VM_
environment:
- VM_retentionPeriod=100y
- VM_influxMeasurementFieldSeparator=/
- VM_http_pathPrefix=/victoria
- VM_search_latencyOffset=10s
redis:
image: redis:6.0
command: --appendonly yes
history:
image: ghcr.io/brewblox/brewblox-history:develop
sparkey:
restart: unless-stopped
build:
context: .
dockerfile: ./Dockerfile.service
volumes:
- type: bind
source: ./brewblox_devcon_spark
target: /app/brewblox_devcon_spark
- type: bind
source: ./parse_appenv.py
target: /app/parse_appenv.py
- type: bind
source: ./entrypoint.sh
target: /app/entrypoint.sh
environment:
- UVICORN_RELOAD=True
- BREWBLOX_SPARK_DEBUG=True
- BREWBLOX_SPARK_TRACE=False
- BREWBLOX_SPARK_SIMULATION=True
ports:
- "5000:5000"