-
Notifications
You must be signed in to change notification settings - Fork 0
/
docker-compose.yml
43 lines (37 loc) · 970 Bytes
/
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
name: easypay
services:
sqlserver:
image: mcr.microsoft.com/mssql/server:2022-latest
volumes:
- sqlserver.data:/var/opt/mssql
users.api:
image: easypay/users/api:${TAG:-dev}
build:
context: .
dockerfile: src/Services/Users/Users.API/Dockerfile
depends_on:
sqlserver:
condition: service_healthy
transactions.api:
image: easypay/transactions/api:${TAG:-dev}
build:
context: .
dockerfile: src/Services/Transactions/Transactions.API/Dockerfile
depends_on:
sqlserver:
condition: service_healthy
authentication.api:
image: easypay/authentication/api:${TAG:-dev}
build:
context: .
dockerfile: src/Services/Authentication/Authentication.API/Dockerfile
depends_on:
sqlserver:
condition: service_healthy
web:
image: easypay/web:${TAG:-dev}
build:
context: .
dockerfile: src/Web/Dockerfile
volumes:
sqlserver.data: