forked from StarlingUAS/FenswoodScenario
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdocker-compose.windows.yml
More file actions
49 lines (43 loc) · 1.37 KB
/
docker-compose.windows.yml
File metadata and controls
49 lines (43 loc) · 1.37 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
version: '3'
services:
simhost:
image: uobflightlabstarling/starling-sim-iris-ap:${STARLING_RELEASE:-latest}
environment:
- AP_SITL_HOST=sitl
volumes:
- ./fenswood:/ros.env.d/fenswood
command: ["ros2", "launch", "/ros.env.d/fenswood/iris.launch.xml"]
ports:
- "8080:8080"
sitl:
image: uobflightlabstarling/starling-sim-ardupilot-copter:${STARLING_RELEASE:-latest}
environment:
- AP_USE_GAZEBO=true
- AP_HOME=51.4233628,-2.671671,100.0,0
- AP_SIM_HOST=simhost
ports:
- "5762:5762"
mavros:
image: uobflightlabstarling/starling-mavros:${STARLING_RELEASE:-latest}
command: ros2 launch launch/mavros_bridge.launch.xml
environment:
- "MAVROS_TGT_FIRMWARE=apm"
- "MAVROS_TGT_SYSTEM=1"
- "MAVROS_FCU_URL=tcp://sitl:5760"
- "MAVROS_GCS_URL=tcp-l://:5761"
- "MAVROS_CONFIG_PATH=/mavros_config_ap.yaml"
- "MAVROS_PLUGINLISTS_PATH=/mavros_pluginlists_ap.yaml"
ports:
- "5761:5761"
# splitter:
# image: uobflightlabstarling/mavp2p
# command: tcpc:mavros:5761 tcps:0.0.0.0:5760 tcpc
# rosbridge-suite:
# image: uobflightlabstarling/rosbridge-suite:${STARLING_RELEASE:-latest}
# ports:
# - "9090:9090"
# Uncomment for the UI Example
# ui-example:
# image: uobflightlabstarling/starling-ui-example
# ports:
# - "3000:3000"