-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathdocker-compose.yml
More file actions
52 lines (46 loc) · 1.26 KB
/
docker-compose.yml
File metadata and controls
52 lines (46 loc) · 1.26 KB
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
version: '3.4'
services:
ApiGateway:
image: ahmedezzatg/learninglantern.apigateway
build:
context: .
dockerfile: ApiGateway/LearningLantern.ApiGateway/Dockerfile
ports:
- "80:80"
environment:
- ASPNETCORE_URLS=http://+:80
TodoList:
image: ahmedezzatg/learninglantern.todolist
build:
context: .
dockerfile: TodoList/LearningLantern.TodoList/Dockerfile
environment:
- ASPNETCORE_URLS=http://+:80
Calendar:
image: ahmedezzatg/learninglantern.calendar
build:
context: .
dockerfile: Calendar/LearningLantern.Calendar/Dockerfile
environment:
- ASPNETCORE_URLS=http://+:80
Video:
image: ahmedezzatg/learninglantern.video
build:
context: .
dockerfile: Video/LearningLantern.Video/Dockerfile
environment:
- ASPNETCORE_URLS=http://+:80
TextLesson:
image: ahmedezzatg/learninglantern.textlesson
build:
context: .
dockerfile: TextLesson/LearningLantern.TextLesson/Dockerfile
environment:
- ASPNETCORE_URLS=http://+:80
Admin:
image: ahmedezzatg/learninglantern.admin
build:
context: .
dockerfile: Admin/LearningLantern.Admin/Dockerfile
environment:
- ASPNETCORE_URLS=http://+:80