-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdocker-compose.dev.yml
More file actions
37 lines (35 loc) · 853 Bytes
/
Copy pathdocker-compose.dev.yml
File metadata and controls
37 lines (35 loc) · 853 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
services:
redis:
image: redis:7.4-alpine
ports:
- "6379:6379"
control-plane:
build:
context: ./services/control-plane
environment:
CONTROL_PORT: 8080
REDIS_HOST: redis
REDIS_PORT: 6379
JOIN_TOKEN_SECRET: dev-secret
SESSION_CALLBACK_SECRET: dev-callback-secret
SESSION_WS_FALLBACK: ws://localhost:8090/ws/room
ports:
- "8080:8080"
depends_on:
- redis
session-server:
build:
context: ./services/session-server
environment:
SESSION_PORT: 8090
REDIS_HOST: redis
REDIS_PORT: 6379
JOIN_TOKEN_SECRET: dev-secret
CONTROL_BASE_URL: http://control-plane:8080
SESSION_CALLBACK_SECRET: dev-callback-secret
AGONES_SDK_ENABLED: "false"
ports:
- "8090:8090"
depends_on:
- redis
- control-plane