forked from Altinn/altinn-studio
-
Notifications
You must be signed in to change notification settings - Fork 0
/
docker-compose.yml
123 lines (114 loc) · 3.82 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
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
version: '3.6'
networks:
altinncore_network:
external: false
volumes:
gitea-data:
services:
altinn_dashboard:
container_name: studiodashboard
image: altinn-studio-dashboard:latest
build:
context: .
dockerfile: src/react-apps/applications/dashboard/Dockerfile
altinn_service_development:
container_name: studiodev
image: altinn-studio-service-development:latest
build:
context: .
dockerfile: src/react-apps/applications/service-development/Dockerfile
altinn_runtime_app:
container_name: altinn-runtime-app
image: altinn-runtime-app:latest
build:
context: .
dockerfile: src/react-apps/applications/runtime/Dockerfile
altinn_loadbalancer:
container_name: altinn-loadbalancer
image: loadbalancer:latest
restart: always
networks:
- altinncore_network
ports:
- "80:80"
environment:
- NGINX_HOST=localhost
- NGINX_PORT=80
depends_on:
- altinn_repositories
- altinn_designer
build:
context: ./src/LoadBalancer
altinn_designer:
container_name: altinn-designer
image: altinncore:latest
restart: always
networks:
- altinncore_network
volumes:
- "C:/AltinnCore/Repos:/AltinnCore/Repos"
environment:
- ASPNETCORE_ENVIRONMENT=Development
- ASPNETCORE_URLS=http://+:5000
- ServiceRepositorySettings:RepositoryLocation=/AltinnCore/Repos/
- ServiceRepositorySettings:EnableGiteaIntegration=true
- ServiceRepositorySettings:ForceGiteaAuthentication=true
- ServiceRepositorySettings:ApiEndPoint=http://altinn-repositories:3000/api/v1
- ServiceRepositorySettings:ApiEndPointHost=altinn-repositories
- ServiceRepositorySettings:RepositoryBaseURL=http://altinn-repositories:3000/
- GeneralSettings:TemplateLocation=/Templates
- GeneralSettings:DeploymentLocation=/Templates/deployment
- GeneralSettings:LanguageFilesLocation=Languages/
- GeneralSettings:AltinnStudioEndpoint=http://altinn3.no/
- TestdataRepositorySettings:RepositoryLocation=/Testdata
ports:
- "5000:5000"
depends_on:
- altinn_repositories
- altinn_dashboard
- altinn_service_development
build:
context: .
dockerfile: src/AltinnCore/Designer/Dockerfile
altinn_runtime:
container_name: altinn-runtime
image: altinncoreruntime:latest
restart: always
networks:
- altinncore_network
volumes:
- "C:/AltinnCore/Repos:/AltinnCore/Repos"
environment:
- ASPNETCORE_ENVIRONMENT=Development
- ASPNETCORE_URLS=http://+:5005
- ServiceRepositorySettings:RepositoryLocation=/AltinnRuntime/Repos/
- ServiceRepositorySettings:RuntimeAPIEndPoint=http://altinn-designer:5000/
- ServiceRepositorySettings:EnableGiteaIntegration=true
- ServiceRepositorySettings:ForceGiteaAuthentication=true
- ServiceRepositorySettings:ApiEndPoint=http://altinn-repositories:3000/api/v1
- ServiceRepositorySettings:ApiEndPointHost=altinn-repositories
- ServiceRepositorySettings:RepositoryBaseURL=http://altinn-repositories:3000/
- ServiceRepositorySettings:ShouldFetchFromDatabase=false
- GeneralSettings:AltinnStudioEndpoint=http://altinn3.no/
- GeneralSettings:LanguageFilesLocation=Languages/
- TestdataRepositorySettings:RepositoryLocation=/app/Testdata
- TestdataRepositorySettings:DesignerHost=altinn-designer
ports:
- "5005:5005"
build:
context: .
dockerfile: src/AltinnCore/Runtime/Dockerfile
altinn_repositories:
container_name: altinn-repositories
image: gitea/gitea:1.7
restart: always
networks:
- altinncore_network
volumes:
- "gitea-data:/data"
ports:
- "3000:3000"
- "222:22"
build:
context: .
dockerfile: src/AltinnRepositories/Dockerfile