forked from go-park-mail-ru/2021_2_Frontoviki
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdocker-compose.yml
68 lines (62 loc) · 1.2 KB
/
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
56
57
58
59
60
61
62
63
64
65
66
67
68
version: "3.4"
services:
db:
build:
context: .
dockerfile: build/db/Dockerfile
volumes:
- ./configs:/app/configs
container_name: db
tarantool:
build:
context: .
dockerfile: build/tarantool/Dockerfile
volumes:
- ./configs:/app/configs
container_name: tarantool
auth:
depends_on:
- tarantool
build:
context: .
dockerfile: build/auth/Dockerfile
target: run_step
volumes:
- ./configs:/app/configs
container_name: auth
chat:
depends_on:
- db
build:
context: .
dockerfile: build/chat/Dockerfile
target: run_step
volumes:
- ./configs:/app/configs
container_name: chat
category:
depends_on:
- db
build:
context: .
dockerfile: build/category/Dockerfile
target: run_step
volumes:
- ./configs:/app/configs
container_name: category
main:
depends_on:
- db
- auth
- chat
- category
build:
context: .
dockerfile: build/main/Dockerfile
target: run_step
volumes:
- ./static:/app/static
- ./configs:/app/configs
ports:
- "8080:8080"
container_name: main