-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdocker-compose.yaml
More file actions
62 lines (57 loc) · 1.59 KB
/
docker-compose.yaml
File metadata and controls
62 lines (57 loc) · 1.59 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
services:
lexaire:
build: .
image: lexaire-cpp:latest
container_name: lexaire
volumes:
- ./common:/workspace/common:ro
- ~/.ssh:/mnt/ssh:ro
flight-bridge:
image: lexaire-cpp:latest
depends_on:
- lexaire
container_name: lexaire-flight-bridge
entrypoint: []
# --dummy is the default; override command (and add extra_hosts for
# drone.local) in docker-compose.override.yaml for live-hardware runs.
command: ["/workspace/build/lexaire-flight-bridge", "--dummy"]
volumes:
- ./common:/workspace/common:ro
perception:
build:
context: .
dockerfile: python/Dockerfile
image: lexaire-python:latest
container_name: lexaire-perception
env_file: [.env]
command: ["lexaire-perception"]
volumes:
- ./common:/workspace/common:ro
orchestrator:
image: lexaire-python:latest
depends_on:
- perception
container_name: lexaire-orchestrator
env_file: [.env]
command: ["lexaire-orchestrator"]
volumes:
- ./common:/workspace/common:ro
# STT reads stdin; invoke via `docker compose --profile tools run --rm stt`.
stt:
image: lexaire-python:latest
profiles: ["tools"]
stdin_open: true
tty: true
env_file: [.env]
entrypoint: ["lexaire-stt"]
volumes:
- ./common:/workspace/common:ro
# Record/playback of sensor streams (field-debug tool, opt-in via profile).
replay:
image: lexaire-python:latest
profiles: ["tools"]
env_file: [.env]
entrypoint: ["lexaire-replay"]
volumes:
- ./common:/workspace/common:ro
- ./recordings:/rec