-
Notifications
You must be signed in to change notification settings - Fork 12
/
compose.yaml
62 lines (57 loc) · 1.29 KB
/
compose.yaml
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
57
58
59
60
61
62
version: '3'
name: drem
services:
website:
build:
context: ./website
dockerfile: Dockerfile
networks:
- drem
restart: unless-stopped
ports:
- 3000:3000
environment:
- WDS_SOCKET_PORT=3000
volumes:
- ./website:/app
- /app/node_modules
leaderboard:
build:
context: ./website-leaderboard
dockerfile: Dockerfile
networks:
- drem
restart: unless-stopped
ports:
- 3001:3000
environment:
- WDS_SOCKET_PORT=3001
volumes:
- ./website-leaderboard:/app
- /app/node_modules
overlays:
build:
context: ./website-stream-overlays
dockerfile: Dockerfile
networks:
- drem
restart: unless-stopped
ports:
- 3002:3000
environment:
- WDS_SOCKET_PORT=3002
volumes:
- ./website-stream-overlays:/app
- /app/node_modules
# environment:
# - BUCKET=${BUCKET}
# - REGION=${REGION}
# - EMAIL=${EMAIL}
# - AWS_ACCESS_KEY_ID=${AWS_ACCESS_KEY_ID}
# - AWS_SECRET_ACCESS_KEY=${AWS_SECRET_ACCESS_KEY}
# - AWS_SESSION_TOKEN=${AWS_SESSION_TOKEN}
# - BRANCH=$(git symbolic-ref --short HEAD)
# - ACCOUNT=$(aws sts get-caller-identity --query Account --output text)
networks:
drem:
driver: bridge