-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdocker-compose-dla.yml
53 lines (45 loc) · 979 Bytes
/
docker-compose-dla.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
version: "3.9"
networks:
dla-backend:
driver: bridge
services:
auth:
build: ./services/auth
container_name: dla_auth
networks:
- dla-backend
ports:
- "5000:5000"
restart: on-failure
book_details:
build: ./services/book_details
container_name: dla_book_details
networks:
- dla-backend
restart: on-failure
search:
build: ./services/search
container_name: dla_search
networks:
- dla-backend
restart: on-failure
wishlist:
build: ./services/wishlist
container_name: dla_wishlist
networks:
- dla-backend
restart: on-failure
usertrack:
build: ./services/usertrack
container_name: dla_usertrack
networks:
- dla-backend
restart: on-failure
explore:
build: ./services/explore
container_name: dla_explore
networks:
- dla-backend
restart: on-failure
# the kong gateway services are defined in
# docker-compose-kong.yml