-
Notifications
You must be signed in to change notification settings - Fork 22
/
sim.yml
68 lines (62 loc) · 1.56 KB
/
sim.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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
version: "3.3"
services:
mavlink2rest:
image: "ericjohnson97/iq_sim_mavlink2rest:t0.11.19"
network_mode: "host"
environment:
- "MAVLINK_SRC=udpin:127.0.0.1:14551"
- "SERVER_PORT=0.0.0.0:6040"
mavp2p:
image: "ericjohnson97/iq_sim_server_mavp2p:latest"
network_mode: "host"
environment:
CMD: "./mavp2p tcpc:127.0.0.1:5760 udpc:127.0.0.1:14550 udpc:127.0.0.1:14551"
restart: "on-failure"
arducopter:
image: "ericjohnson97/iq_sim_server_ardupilot:Copter-4.4.0"
network_mode: "host"
restart: "on-failure"
environment:
VEHICLE: "Copter"
MODEL: "+"
LAT: "-27.63256"
LON: "-48.58706"
SYSID: "1"
profiles:
- "arducopter"
arduplane:
image: "ericjohnson97/iq_sim_server_ardupilot:Plane-4.4.0"
network_mode: "host"
restart: "on-failure"
environment:
VEHICLE: "ArduPlane"
MODEL: "plane"
LAT: "-27.63256"
LON: "-48.58706"
SYSID: "1"
profiles:
- "arduplane"
ardurover:
image: "ericjohnson97/iq_sim_server_ardupilot:Rover-4.2.2"
network_mode: "host"
restart: "on-failure"
environment:
VEHICLE: "APMrover2"
MODEL: "rover"
LAT: "-27.63256"
LON: "-48.58706"
SYSID: "1"
profiles:
- "ardurover"
ardusub:
image: "ericjohnson97/iq_sim_server_ardupilot:ArduSub-4.1.1"
network_mode: "host"
restart: "on-failure"
environment:
VEHICLE: "ArduSub"
MODEL: "vectored"
LAT: "-27.63256"
LON: "-48.58706"
SYSID: "1"
profiles:
- "ardusub"