-
Notifications
You must be signed in to change notification settings - Fork 4
/
docker-compose.yml
49 lines (45 loc) · 946 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
44
45
46
47
48
49
version: '3'
services:
nginx-router:
image: nginx:latest
volumes:
- ./NginxRouter/nginx.conf:/etc/nginx/nginx.conf
- ./NginxRouter/index.html:/var/www/index.html
ports:
- 80:80
create-project:
build: ./CreateProject
expose:
- "80"
volumes:
- ./events:/events
environment:
EVENT_PATH: /events
ASPNETCORE_URLS: https://+:80
approve:
build: ./Approve
expose:
- "80"
volumes:
- ./events:/events
environment:
EVENT_PATH: /events
ASPNETCORE_URLS: https://+:80
submit-timesheet:
build: ./SubmitTimesheet
expose:
- "80"
volumes:
- ./events:/events
environment:
EVENT_PATH: /events
ASPNETCORE_URLS: https://+:80
hourly-rate:
build: ./HourlyRate
expose:
- "80"
volumes:
- ./events:/events
environment:
EVENT_PATH: /events
ASPNETCORE_URLS: https://+:80