-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathdocker-compose.yml
114 lines (108 loc) · 2.53 KB
/
docker-compose.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
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
112
113
114
version: '3'
services:
ros-master:
image: gramaziokohler/robotic-assembly:workshop-19.01
container_name: ros-master
ports:
- "11311:11311"
command:
- roscore
ros-bridge:
image: gramaziokohler/robotic-assembly:workshop-19.01
container_name: ros-bridge
environment:
- ROS_HOSTNAME=ros-bridge
- ROS_MASTER_URI=http://ros-master:11311
ports:
- "9090:9090"
depends_on:
- ros-master
command:
- roslaunch
- --wait
- rosbridge_server
- rosbridge_websocket.launch
ros-fileserver:
image: gramaziokohler/robotic-assembly:workshop-19.01
container_name: ros-fileserver
environment:
- ROS_HOSTNAME=ros-fileserver
- ROS_MASTER_URI=http://ros-master:11311
depends_on:
- ros-master
command:
- roslaunch
- --wait
- file_server
- file_server.launch
abb-driver:
image: gramaziokohler/robotic-assembly:workshop-19.01
container_name: abb-driver
environment:
- ROS_HOSTNAME=abb-driver
- ROS_MASTER_URI=http://ros-master:11311
depends_on:
- ros-master
command:
- roslaunch
- --wait
- abb_linear_axis
- robot_interface_download.launch
- robot_ip:=${ROBOT_IP}
abb-tf-world-base_link:
image: gramaziokohler/robotic-assembly:workshop-19.01
container_name: abb-tf-world-base_link
environment:
- ROS_HOSTNAME=abb-tf-world-base_link
- ROS_MASTER_URI=http://ros-master:11311
depends_on:
- ros-master
command:
- rosrun
- tf
- static_transform_publisher
- '0'
- '0'
- '0'
- '0'
- '0'
- '0'
- '1'
- world
- base_link
- '100'
abb-tf-world-axis:
image: gramaziokohler/robotic-assembly:workshop-19.01
container_name: abb-tf-world-axis
environment:
- ROS_HOSTNAME=abb-tf-world-axis
- ROS_MASTER_URI=http://ros-master:11311
depends_on:
- ros-master
command:
- rosrun
- tf
- static_transform_publisher
- '0'
- '0'
- '0'
- '0'
- '0'
- '0'
- '1'
- world
- axis
- '100'
abb-linear-axis-planner:
image: gramaziokohler/robotic-assembly:workshop-19.01
container_name: abb-linear-axis-planner
environment:
- ROS_HOSTNAME=abb-linear-axis-planner
- ROS_MASTER_URI=http://ros-master:11311
depends_on:
- ros-master
command:
- roslaunch
- --wait
- abb_linear_axis_brick_moveit_config
- workshop.launch