-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathapp.yml
More file actions
76 lines (75 loc) · 1.69 KB
/
app.yml
File metadata and controls
76 lines (75 loc) · 1.69 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
70
71
72
73
74
75
76
services:
# ========================= APP ======================
api:
build:
context: .
dockerfile: ./server/cmd/api/dockerfile
image: api
container_name: api
ports:
- "10000:10000"
networks:
- app
user:
build:
context: .
dockerfile: ./server/cmd/user/dockerfile
image: user
container_name: user
ports:
- "10001:10001"
networks:
- app
lecture:
build:
context: .
dockerfile: ./server/cmd/lecture/dockerfile
image: lecture
container_name: lecture
ports:
- "10002:10002"
networks:
- app
chat:
build:
context: .
dockerfile: ./server/cmd/chat/dockerfile
image: chat
container_name: chat
ports:
- "10003:10003"
networks:
- app
push:
build:
context: .
dockerfile: ./server/cmd/push/dockerfile
image: push
container_name: push
ports:
- "10004:10004"
networks:
- app
quiz:
build:
context: .
dockerfile: ./server/cmd/quiz/dockerfile
image: quiz
container_name: quiz
ports:
- "10005:10005"
networks:
- app
agent:
build:
context: .
dockerfile: ./server/cmd/agent/dockerfile
image: agent
container_name: agent
ports:
- "10006:10006"
networks:
- app
networks:
app:
driver: bridge