forked from bcgov/jag-csrs-portal-public
-
Notifications
You must be signed in to change notification settings - Fork 0
/
docker-compose.yml
85 lines (78 loc) · 3.57 KB
/
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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
version: "3.8"
services:
# #############################################################################################
# ### Csrs FRONTEND ###
# #############################################################################################
jag-csrs-frontend:
container_name: jag-csrs-frontend
build:
context: ./src/frontend/csrs-portal
restart: always
ports:
- "8080:8080"
## following is used for testing nginx.conf locally. No need to build the csrs-portal every
## time we change the nginx.conf
#volumes:
# - ./src/frontend/csrs-portal/nginx.conf:/opt/app-root/etc/nginx.default.d/default.conf
depends_on: [jag-csrs-api]
# #############################################################################################
# ### Csrs BACKEND ###
# #############################################################################################
jag-csrs-api:
container_name: jag-csrs-api
build:
context: ./src/backend
environment:
- ASPNETCORE_ENVIRONMENT=Development
- ASPNETCORE_URLS=http://0.0.0.0:8080
- SERILOG__WRITETO__1__NAME=Seq
- SERILOG__WRITETO__1__ARGS__SERVERURL=http://seq:5341
- ZIPKIN_URL=http://zipkin:9411/api/v2/spans
- FILEMANAGER__ADDRESS=https://localhost:8084
- FILEMANAGER__SECURE=true
ports:
- "8081:8080"
volumes:
- ${APPDATA}/Microsoft/UserSecrets:/root/.microsoft/usersecrets:ro
depends_on: [seq, zipkin]
# #############################################################################################
# ### jag-csrs-file-manager ###
# #############################################################################################
jag-csrs-file-manager:
container_name: jag-csrs-file-manager
build:
context: ./src/backend
dockerfile: Csrs.Services.FileManager/Dockerfile
environment:
- ASPNETCORE_ENVIRONMENT=Development
- ASPNETCORE_URLS=https://0.0.0.0:8080
ports:
- "8084:8080"
volumes:
- ${APPDATA}/Microsoft/UserSecrets:/root/.microsoft/usersecrets:ro
- ${APPDATA}/ASP.NET/Https:/root/.aspnet/https:ro
# #############################################################################################
# ### SEQ CONFIG ###
# #############################################################################################
seq:
container_name: csrs-seq
image: datalust/seq
environment:
- ACCEPT_EULA=Y
ports:
- 5341:5341 # logs are written here, do not need to expose, but will so we can log from outside
- 8083:80 # user interface is available here
# #############################################################################################
# ### ZIPKIN CONFIG ###
# #############################################################################################
zipkin:
container_name: csrs-zipkin
image: openzipkin/zipkin
ports:
- 9411:9411
# #############################################################################################
# ### NETWORK CONFIG ###
# #############################################################################################
networks:
csrs-net:
driver: "bridge"