-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdocker-compose.yml
More file actions
52 lines (52 loc) · 1.02 KB
/
docker-compose.yml
File metadata and controls
52 lines (52 loc) · 1.02 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
version: "2.1"
services:
user_service:
container_name: user_service
build:
context: ./user_service
ports:
- "7083:7082"
environment:
- DEBUG=True
post_service:
container_name: post_service
build:
context: ./post_service
ports:
- "7084:7082"
environment:
- DEBUG=True
comment_service:
container_name: comment_service
build:
context: ./comment_service
ports:
- "7085:7082"
environment:
- DEBUG=True
command_service:
container_name: command_service
build:
context: ./command_service
ports:
- "7086:7082"
environment:
- DEBUG=True
server:
container_name: server
build:
context: ./server
ports:
- "7082:7082"
environment:
- DEBUG=True
# Uncomment this when code is ready for production
# front_end:
# container_name: front_end
# build:
# context: .
# dockerfile: ./src/Dockerfile
# ports:
# - "7081:7081"
# environment:
# - DEBUG=True