-
Notifications
You must be signed in to change notification settings - Fork 12
Expand file tree
/
Copy pathdocker-compose.yml
More file actions
69 lines (63 loc) · 1.65 KB
/
Copy pathdocker-compose.yml
File metadata and controls
69 lines (63 loc) · 1.65 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
57
58
59
60
61
62
63
64
65
66
67
68
69
version: "3.7"
services:
postgres:
image: postgres:13-alpine
container_name: evkk-postgres
profiles: [ "all", "backend" ]
restart: unless-stopped
command: [ "postgres", "-c", "log_statement=all" ]
environment:
POSTGRES_USER: db_user
POSTGRES_PASSWORD: password
POSTGRES_DB: evkk
volumes:
- ./.docker/postgres:/var/lib/postgresql/data
ports:
- "5432:5432"
redis:
image: redis:6-alpine
container_name: evkk-redis
profiles: [ "all", "backend" ]
restart: unless-stopped
ports:
- "6379:6379"
stanza-server:
container_name: evkk-stanza-server
profiles: [ "all", "stanza" ]
restart: unless-stopped
environment:
PYCHARM_DEBUG: 1
extra_hosts:
- "host.docker.internal:host-gateway"
build:
context: .
dockerfile: docker/images/evkk-stanza-server.Dockerfile
ports:
- "5300:5300"
klasterdaja:
container_name: evkk-klasterdaja
profiles: [ "all", "klasterdaja" ]
restart: unless-stopped
build:
context: .
dockerfile: docker/images/evkk-klasterdaja.Dockerfile
ports:
- "5100:5100"
corrector-server:
container_name: evkk-corrector-server
profiles: [ "all", "corrector" ]
restart: unless-stopped
build:
context: .
dockerfile: docker/images/evkk-corrector-server.Dockerfile
ports:
- "5200:5200"
grammar-worker-server:
container_name: evkk-grammar-worker-server
profiles: [ "all", "grammar_worker" ]
restart: unless-stopped
build:
context: .
dockerfile: docker/images/evkk-grammar-worker-server.Dockerfile
ports:
- "5400:5400"