-
Notifications
You must be signed in to change notification settings - Fork 3
/
docker-compose.yml
45 lines (38 loc) · 1.01 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
version: '3.4'
services:
bookfast-facility:
image: ${DOCKER_REGISTRY-}bookfast-facility
build:
context: .
dockerfile: BookFast.Facility/Dockerfile
bookfast-facility-rpc:
image: ${DOCKER_REGISTRY-}bookfast-facility-rpc
build:
context: .
dockerfile: BookFast.Facility.Rpc/Dockerfile
bookfast-files:
image: ${DOCKER_REGISTRY-}bookfast-files
build:
context: .
dockerfile: BookFast.Files/Dockerfile
depends_on:
- bookfast-facility
bookfast-booking:
image: ${DOCKER_REGISTRY-}bookfast-booking
build:
context: .
dockerfile: BookFast.Booking/Dockerfile
depends_on:
- bookfast-facility
bookfast-search-indexer:
image: ${DOCKER_REGISTRY-}bookfast-search-indexer
build:
context: .
dockerfile: BookFast.Search.Indexer/Dockerfile
depends_on:
- bookfast-facility
bookfast-search:
image: ${DOCKER_REGISTRY-}bookfast-search
build:
context: .
dockerfile: BookFast.Search/Dockerfile