-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathdocker-compose.yml
More file actions
37 lines (33 loc) · 943 Bytes
/
docker-compose.yml
File metadata and controls
37 lines (33 loc) · 943 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
version: '3'
services:
rcrs_server:
hostname: rcrs_server
image: ./rcrs_server/
volumes:
- ./map/:/map/:ro
- ./logs/server/:/logs/
env-file:
- rcrs.env
#comming soon
# web_viewer:
# depends_on: rcrs_server
# image: roborescue:rcrs-web-viewer
# env-file:
# - rcrs.env
java_agent:
depends_on: rcrs_server
image: ./java-agent/
volumes:
- ./agent-code/:/agent/
- ./logs/agent/:/logs/
env-file:
- rcrs.env
# Uncomment if you want to develop in python just uncomment the following lines and comment java_agent
# python_agent:
# depends_on: rcrs_server
# image: ./python-agent/
# volumes:
# - ./agent-code/:/agent/
# - ./logs/agent/:/logs/
# env-file:
# - rcrs.env