-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathdocker-compose-local.yml
More file actions
57 lines (50 loc) · 1.18 KB
/
docker-compose-local.yml
File metadata and controls
57 lines (50 loc) · 1.18 KB
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
# same as docker-compose.yml but with added server service, and use_server env var set to false for mercury
version: '3'
services:
redis:
image: redis/redis-stack:latest
ports:
- "6379:6379"
- "8001:8001"
volumes:
- redis_data:/data
icarus-ws:
build:
context: icarus/
dockerfile: Dockerfile-icarus-ws
ports:
- "5001:5001" # avoid 5000 because of MacOS control center
- "6000:6000"
icarus-react:
build:
context: icarus/
dockerfile: Dockerfile-icarus-react
ports:
- "3000:3000"
minnie-react:
build:
context: minnie/
dockerfile: Dockerfile-minnie-react
ports:
- "3001:3001"
env_file:
- ./minnie/.env
minnie-ws:
build:
context: minnie/
dockerfile: Dockerfile-minnie-ws
ports:
- "6001:6001"
- "6002:6002"
server: # run the server locally instead of using the remote one
build:
context: telemetry/
ports:
# don't expose 5556 or 5557 otherwise local python processes are unable to bind to it.
- "5555:5555"
- "5558:5558"
environment:
local: "true"
host_ip: ${host_ip}
volumes:
redis_data: