-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcompose.yaml
More file actions
32 lines (30 loc) · 817 Bytes
/
Copy pathcompose.yaml
File metadata and controls
32 lines (30 loc) · 817 Bytes
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
services:
rabbitmq:
image: rabbitmq:3-alpine
volumes:
- ./Src/rabbitmq.conf:/etc/rabbitmq/rabbitmq.conf:r
ports:
- "15672:15672"
- "5672:5672"
bonum-ocr:
build:
context: ./Src
dockerfile: Bonum.Ocr.Dockerfile
environment:
DOTNET_ENVIRONMENT: Container
depends_on:
rabbitmq:
condition: service_started
bonum-api:
build:
context: ./Src
dockerfile: Bonum.Api.Dockerfile
environment:
ASPNETCORE_ENVIRONMENT: Container
ports:
- "5000:80"
depends_on:
rabbitmq:
condition: service_started
bonum-ocr:
condition: service_started