-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathaqua-real-compose.yml
42 lines (42 loc) · 1.32 KB
/
aqua-real-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
## Local learning version of the compose file for running learning code onthe real robot
version: "3.3"
services:
mc_pilco_client:
image: juancamilog/robot_learning:kusanagi
command: /bin/bash -c "sleep 3600;"
deploy:
mode: global
placement:
constraints: [node.role == manager]
volumes:
# keep bash history
- ${HOME}/.bash_history:/root/.bash_history
# ros workspace
- ${HOME}/mrl_lunar_ws:/catkin_ws
# kusanagi library
#- ${HOME}/workspace/kusanagi:/kusanagi
# theano compile dir
- /localdata/.theano:/root/.theano
# experiment data output
- /localdata:/localdata
environment:
MPLBACKEND: Agg
OMP_NUM_THREADS: 1
OPENBLAS_NUM_THREADS: 1
MKL_NUM_THREADS: 4
MKL_INTERFACE_LAYER: GNU
MKL_THREADING_LAYER: GNU
#ROS_MASTER_URI: http://vision.aqua5:11311
ROS_HOSTNAME: mc_pilco_client
TUNNEL_HOST: vision.aqua5.tunnel
REMOTE_HOST: vision.aqua5
LOCAL_PORT: 11311
REMOTE_PORT: 11311
networks:
- bridge
- ros
networks:
bridge:
external:
name: bridge
ros: