-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathdocker-compose.yml
More file actions
43 lines (43 loc) · 862 Bytes
/
docker-compose.yml
File metadata and controls
43 lines (43 loc) · 862 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
38
39
40
41
42
43
services:
frontend:
build:
context: ./
ports:
- "3000:3000"
environment:
PUBLIC_SERVER_URL:
PORT: 3000
SECRET_KEY:
MONGO_URL: "mongodb://mongo/blind_dating"
REDIS_URL: "redis://redis/"
SRP_URL: "http://srp:6530/"
DISCORD_ID:
DISCORD_SECRET:
DISCORD_BOT:
NEXT_HANDLE_ERRORS: true
TRAINING_MODE: false
PUBLIC_VAPID_KEY:
PRIVATE_VAPID_KEY:
AI_URL: http://127.0.0.1:4000
depends_on:
- "mongo"
- "redis"
- "srp"
mongo:
image: mongo
restart: always
volumes:
# - ./mongo:/data/db
ports:
- 27017:27017
redis:
image: redis
restart: always
ports:
- 6379:6379
srp:
image: srp
build: https://github.com/PiRifle/srpService.git
restart: always
ports:
- 6530:6530