-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdocker-compose.yml
More file actions
37 lines (35 loc) · 915 Bytes
/
docker-compose.yml
File metadata and controls
37 lines (35 loc) · 915 Bytes
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
services:
ingest:
image: flashpoint-ingest
build:
dockerfile: ./docker-services/ingest/Dockerfile
volumes:
- telemetry:/app/telemetry
- database:/app/db
- convertedData:/app/converted_data
dataviz:
image: flashpoint-dataviz
ports:
- "8501:8501"
build:
dockerfile: ./docker-services/dataviz/Dockerfile
volumes:
- database:/app/db/
- convertedData:/app/converted_data/
# if it failed to mount _data, make sure FLASHPOINT_DIR is correct and there is a telemetry, db, and converted_data directory
volumes:
telemetry:
driver_opts:
type: "none"
o: "bind"
device: "${FLASHPOINT_DIR}/telemetry"
database:
driver_opts:
type: "none"
o: "bind"
device: "${FLASHPOINT_DIR}/db"
convertedData:
driver_opts:
type: "none"
o: "bind"
device: "${FLASHPOINT_DIR}/converted_data"