-
Notifications
You must be signed in to change notification settings - Fork 0
/
docker-compose.yml
57 lines (54 loc) · 1.05 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
version: "3.7"
services:
go-cart:
container_name: go-cart
build:
context: "./docker/go/cart"
volumes:
- ./go/services/cart:/app
ports:
- "1323:1323"
- "2345:2345"
security_opt:
- apparmor:unconfined
cap_add:
- SYS_PTRACE
go-product:
container_name: go-product
build:
context: "./docker/go/product"
volumes:
- ./go/services/product:/app
ports:
- "1324:1324"
- "2346:2346"
security_opt:
- apparmor:unconfined
cap_add:
- SYS_PTRACE
go-order:
container_name: go-order
build:
context: "./docker/go/order"
volumes:
- ./go/services/order:/app
ports:
- "1325:1325"
- "2347:2347"
security_opt:
- apparmor:unconfined
cap_add:
- SYS_PTRACE
go-user:
container_name: go-user
build:
context: "./docker/go/user"
volumes:
- ./go/services/user:/app
ports:
- "1326:1326"
- "2348:2348"
security_opt:
- apparmor:unconfined
cap_add:
- SYS_PTRACE