-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcompose.yaml
More file actions
37 lines (30 loc) · 722 Bytes
/
compose.yaml
File metadata and controls
37 lines (30 loc) · 722 Bytes
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
volumes:
ur_logger_data:
services:
# database
db:
image: postgres:15.4-alpine3.18
environment:
POSTGRES_PASSWORD: ur_logger_password
POSTGRES_USER: ur_logger
POSTGRES_DB: UR_LOG_DATA
volumes:
- ur_logger_data:/var/lib/postgresql/data
ports:
- 127.0.0.1:5432:5432
# robot simulators
ur_sim:
image: universalrobots/ursim_e-series
ports:
- 127.0.0.1:5900:5900
- 127.0.0.1:30001:30001
- 127.0.0.1:6080:6080
environment:
ROBOT_MODEL: UR10
# optionally - second robot
#ur_sim_2:
# image: universalrobots/ursim_e-series
# ports:
# - 127.0.0.2:5900:5900
# - 127.0.0.2:30001:30001
# - 127.0.0.2:6080:6080