-
Notifications
You must be signed in to change notification settings - Fork 2
/
docker-compose.kinetic.yaml
111 lines (111 loc) · 2.82 KB
/
docker-compose.kinetic.yaml
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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
version: '3'
services:
core:
image: jeguzzi/ros:armhf-kinetic-ros-dev
network_mode: host
command: roscore
restart: always
env_file:
- ./ros.env
volumes:
- ./logs:/root/.ros/log:rw
robot:
build: .
image: jeguzzi/thymioid:kinetic
network_mode: host
privileged: true
command: roslaunch --wait thymioid robot.launch odom_max_rate:=21
restart: always
env_file:
- ./ros.env
volumes:
- ./logs:/root/.ros/log:rw
- /dev:/dev
- ./calibration:/root/catkin_ws/src/ros-aseba/thymio_driver/calibration:rw
depends_on:
- core
camera:
image: jeguzzi/thymioid:kinetic
network_mode: host
privileged: true
restart: always
command: roslaunch --wait thymioid camera.launch image_width:=640 image_height:=480 rectify:=false framerate:=10
env_file:
- ./ros.env
volumes:
- ./logs:/root/.ros/log:rw
depends_on:
- core
ups:
image: jeguzzi/thymioid:kinetic
network_mode: host
privileged: true
command: roslaunch --wait thymioid ups.launch
restart: always
env_file:
- ./ros.env
volumes:
- ./logs:/root/.ros/log:rw
depends_on:
- core
ui:
image: jeguzzi/thymioid:kinetic
network_mode: host
privileged: true
command: roslaunch --wait thymioid ui.launch
restart: always
env_file:
- ./ros.env
volumes:
- ./logs:/root/.ros/log:rw
- /run/network/ifstate.wlan0:/run/network/ifstate.wlan0
- ./wlan:/wlan:rw
- ./shutdown:/shutdown:rw
- ./update:/update:rw
depends_on:
- robot
demos:
image: jeguzzi/thymioid:kinetic
network_mode: host
privileged: true
command: roslaunch --wait thymioid demo_menu.launch demos:=[ml,markers]
restart: always
env_file:
- ./ros.env
volumes:
- ./logs:/root/.ros/log:rw
- /var/run/docker.sock:/var/run/docker.sock
joy_teleop:
image: jeguzzi/thymioid:kinetic
network_mode: host
privileged: true
command: roslaunch --wait thymioid joy_teleop.launch
restart: always
env_file:
- ./ros.env
volumes:
- ./logs:/root/.ros/log:rw
notebook:
image: jeguzzi/thymioid:kinetic
network_mode: host
command: jupyter notebook --allow-root --NotebookApp.token='' --port=8888 --no-browser --notebook-dir=/notebook --ip=0.0.0.0
env_file:
- ./ros.env
volumes:
- ./logs:/root/.ros/log:rw
- ./notebook:/notebook:rw
portainer:
command: --no-auth
image: portainer/portainer:linux-arm
volumes:
- /var/run/docker.sock:/var/run/docker.sock
ports:
- 9000:9000
restart: always
aseba:
image: jeguzzi/thymioid:kinetic
command: /root/catkin_ws/devel/lib/aseba/asebaswitch "ser:device=/dev/ttyACM0"
privileged: true
# restart: none
ports:
- 33333:33333