-
Notifications
You must be signed in to change notification settings - Fork 108
/
docker-compose.yml
55 lines (40 loc) · 1011 Bytes
/
docker-compose.yml
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
version: "3.9" # optional since v1.27.0
services:
redis:
image: redis
restart: unless-stopped
ports:
- 6379:6379
api:
build: api
ports:
- "127.0.0.1:8002:8002"
volumes:
- ./api:/app
environment:
- CELERY_BROKER_URL=redis://redis:6379/0
- CERAMIC_CACHE_CACAO_VALIDATION_URL=http://verifier:8001/verify
command: uvicorn scorer.asgi:application --reload --host 0.0.0.0 --port 8002
worker:
build: api
volumes:
- ./api:/app
environment:
- CELERY_BROKER_URL=redis://redis:6379/0
command: celery -A scorer worker -l DEBUG
interface:
build: interface
ports:
- "127.0.0.1:3001:3000"
verifier:
build: verifier
postgres:
image: postgres:12.3-alpine
restart: unless-stopped
environment:
POSTGRES_USER: passport_scorer
POSTGRES_PASSWORD: passport_scorer_pwd
POSTGRES_DB: passport_scorer
PGDATA: /db_data
volumes:
- ./postgres_db_data:/db_data