-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdocker-compose.yml
More file actions
46 lines (43 loc) · 891 Bytes
/
docker-compose.yml
File metadata and controls
46 lines (43 loc) · 891 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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
services:
tracks-service:
image: tracks-api
build:
context: .
dockerfile: Tracks/Tracks.Api/Dockerfile
environment:
- ASPNETCORE_ENVIRONMENT=Release
- ASPNETCORE_URLS=http://+:7002
ports:
- "7002:7002"
networks:
- dev
users-service:
image: users-api
build:
context: .
dockerfile: Users/Users.Api/Dockerfile
environment:
- ASPNETCORE_ENVIRONMENT=Release
- ASPNETCORE_URLS=http://+:7001
ports:
- "7001:7001"
networks:
- dev
gateway:
image: gateway-api
build:
context: .
dockerfile: ApiGateway/Dockerfile
environment:
- ASPNETCORE_ENVIRONMENT=Release
- ASPNETCORE_URLS=http://+:7000
depends_on:
- tracks-service
- users-service
ports:
- "7000:7000"
networks:
- dev
networks:
dev:
driver: bridge