-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathcompose.yml
More file actions
283 lines (274 loc) · 8.67 KB
/
Copy pathcompose.yml
File metadata and controls
283 lines (274 loc) · 8.67 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
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
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
services:
reverse-proxy:
container_name: reverse-proxy
image: traefik:v3.6.2
command:
- "--api.dashboard=true"
- "--providers.docker"
- "--providers.docker.exposedbydefault=false"
- "--providers.file.filename=/etc/traefik/dynamic.yml"
- "--entrypoints.web.address=:80"
- "--entrypoints.websecure.address=:443"
- "--entrypoints.websecure.http.tls=true"
ports:
- 80:80
- 443:443
volumes:
- /var/run/docker.sock:/var/run/docker.sock
- ./certs:/etc/certs:ro
- ./dynamic.yml:/etc/traefik/dynamic.yml
labels:
- "traefik.enable=true"
- "traefik.http.routers.dashboard.rule=Host(`dashboard.localhost`)"
- "traefik.http.routers.dashboard.service=api@internal"
- "homarr.relativeSubdomain=dashboard"
- "homarr.icon=simple-icons:traefikproxy"
- "traefik.http.routers.dashboard.tls=true"
- "traefik.http.routers.http-catchall.rule=HostRegexp(`^.+$`)"
- "traefik.http.routers.http-catchall.entrypoints=web"
- "traefik.http.routers.http-catchall.middlewares=redirect-to-https"
- "traefik.http.middlewares.redirect-to-https.redirectscheme.scheme=https"
homepage:
image: ghcr.io/gethomepage/homepage:latest
container_name: homepage
environment:
PUID: 1000
PGID: 1000
HOMEPAGE_ALLOWED_HOSTS: "localhost,127.0.0.1"
volumes:
- ./data/homepage/config:/app/config
- ./data/homepage/icons:/app/public/icons
- ./var/run/docker.sock:/var/run/docker.sock:ro
- ./dynamic.yml:/etc/traefik/dynamic.yml
- ./certs:/etc/certs:ro
restart: unless-stopped
labels:
- "traefik.enable=true"
- "traefik.http.routers.homepage.rule=Host(`localhost`)"
ports:
- 3000:3000
- 3000:3000
redis:
container_name: redis
image: redis:6.2-alpine
restart: always
ports:
- 6379:6379
command: >
redis-server --save 20 1 --loglevel warning --requirepass mysecretpassword
healthcheck:
test: ["CMD", "redis-cli", "ping"]
interval: 2s
timeout: 5s
retries: 5
# GUI for checking what's in Redis
redisinsight:
container_name: redisinsight
image: redis/redisinsight
environment:
RI_APP_PORT: 80
RI_APP_HOST: "0.0.0.0"
ports:
- 8080:80
labels:
- "traefik.enable=true"
- "traefik.http.routers.redisinsight.rule=Host(`redisinsight.localhost`)"
- "traefik.http.services.redisinsight.loadbalancer.server.port=80"
- "homarr.relativeSubdomain=redisinsight"
- "homarr.icon=devicon-plain:redis-wordmark"
volumes:
- redisinsight_cache:/data
db:
container_name: db
image: postgres:16
environment:
POSTGRES_USER: postgres
POSTGRES_PASSWORD: mysecretpassword
POSTGRES_DB: dialogporten
healthcheck:
test: ["CMD-SHELL", "pg_isready -U postgres -d dialogporten"]
interval: 10s
timeout: 20s
retries: 5
ports:
- 5432:5432
volumes:
- postgres_data:/var/lib/postgresql/data
pgadmin4:
container_name: pgadmin4
image: dpage/pgadmin4
environment:
PGADMIN_DEFAULT_EMAIL: admin@admin.com
PGADMIN_DEFAULT_PASSWORD: admin
volumes:
- pgadmin_data:/var/lib/pgadmin
labels:
- "traefik.enable=true"
- "traefik.http.routers.pgadmin4.rule=Host(`pgadmin4.localhost`)"
bff:
container_name: bff
restart: always
build:
context: .
dockerfile: ./packages/bff/Dockerfile
target: build
environment:
DB_CONNECTION_STRING: postgres://postgres:mysecretpassword@db:5432/dialogporten
HOSTNAME: https://app.localhost
DIALOGPORTEN_URL: ${DIALOGPORTEN_URL}
PLATFORM_BASEURL: ${PLATFORM_BASEURL}
OIDC_PLATFORM_URL: ${OIDC_PLATFORM_URL}
OIDC_URL: ${OIDC_URL}
OIDC_CLIENT_ID: ${OIDC_CLIENT_ID}
OIDC_CLIENT_SECRET: ${OIDC_CLIENT_SECRET}
ENABLE_GRAPHIQL: true
SESSION_SECRET: IDPortenSessionSecret2023MoreLettersBlaBla
REDIS_CONNECTION_STRING: redis://:mysecretpassword@redis:6379/0
PORT: 80
NODE_ENV: production
AUTH_CONTEXT_COOKIE_DOMAIN: ${AUTH_CONTEXT_COOKIE_DOMAIN}
# OpenTelemetry configuration (connect to Jaeger on host machine)
OTEL_NAMESPACE: ${OTEL_NAMESPACE}
OTEL_EXPORTER_OTLP_ENDPOINT: ${OTEL_EXPORTER_OTLP_ENDPOINT}
OTEL_EXPORTER_OTLP_PROTOCOL: ${OTEL_EXPORTER_OTLP_PROTOCOL}
OTEL_RESOURCE_ATTRIBUTES: ${OTEL_RESOURCE_ATTRIBUTES}
APP_CONFIG_CONNECTION_STRING: ${APP_CONFIG_CONNECTION_STRING}
ENABLE_INIT_SESSION_ENDPOINT: true
DISABLE_PROFILE: false
ALTINN2_BASE_URL: ${ALTINN2_BASE_URL}
ALTINN2_API_KEY: ${ALTINN2_API_KEY}
PERSON_URN_ENC_KEYS: ${PERSON_URN_ENC_KEYS}
MASKINPORTEN_CLIENT_ID: ${MASKINPORTEN_CLIENT_ID}
MASKINPORTEN_JWK: ${MASKINPORTEN_JWK}
MASKINPORTEN_ISSUER: ${MASKINPORTEN_ISSUER}
MASKINPORTEN_SCOPE: ${MASKINPORTEN_SCOPE}
OCP_APIM_SUBSCRIPTION_KEY: ${OCP_APIM_SUBSCRIPTION_KEY}
REGISTER_SUBSCRIPTION_KEY: ${REGISTER_SUBSCRIPTION_KEY}
labels:
- "traefik.enable=true"
- "traefik.http.routers.bff.rule=Host(`app.localhost`) && PathPrefix(`/api`)"
depends_on:
db:
condition: service_healthy
redis:
condition: service_healthy
command: sh -c "pnpm --filter bff run docker"
develop:
watch:
- action: sync
path: ./packages/bff/
target: /app/packages/bff/
ignore:
- node_modules/
- .azure/
- .git/
- action: sync+restart
path: ./packages/bff-types-generated/
target: /app/packages/bff-types-generated/
ignore:
- node_modules/
- .azure/
- .git/
- action: rebuild
path: ./packages/node-logger/
target: /app/packages/node-logger/
ignore:
- node_modules/
- .azure/
- .git/
- action: sync+restart
path: ./packages/fastify-graphiql/
target: /app/packages/fastify-graphiql/
ignore:
- node_modules/
- .azure/
- .git/
- action: rebuild
path: pnpm-lock.yaml
target: /app/pnpm-lock.yaml
bff-migration:
container_name: bff-migration
command: sh -c "pnpm --filter bff run docker"
build:
context: .
dockerfile: ./packages/bff/Dockerfile
target: build
environment:
DB_CONNECTION_STRING: postgres://postgres:mysecretpassword@db:5432/dialogporten
HOSTNAME: https://app.localhost
OIDC_CLIENT_ID: ${OIDC_CLIENT_ID}
OIDC_CLIENT_SECRET: ${OIDC_CLIENT_SECRET}
CLIENT_ID: ${CLIENT_ID}
CLIENT_SECRET: ${CLIENT_SECRET}
SESSION_SECRET: IDPortenSessionSecret2023MoreLettersBlaBla
REDIS_CONNECTION_STRING: redis://:mysecretpassword@redis:6379/0
TYPEORM_MIGRATIONS: src/migrations/*.ts
TYPEORM_MIGRATIONS_DIR: src/migrations
MIGRATION_RUN: true
depends_on:
db:
condition: service_healthy
frontend:
container_name: frontend
build:
context: .
dockerfile: packages/frontend/Dockerfile
target: build
labels:
- "traefik.enable=true"
- "traefik.http.routers.frontend.rule=Host(`app.localhost`)"
- "traefik.http.services.myservice.loadbalancer.server.port=80"
develop:
watch:
- action: sync
path: ./packages/frontend/
target: /app/packages/frontend/
ignore:
- node_modules/
- .azure/
- .git/
- test-results/
- playwright-report/
- blob-report/
- axe-reports/
- playwright/.cache/
- action: sync+restart
path: ./packages/bff-types-generated/
target: /app/packages/bff-types-generated/
ignore:
- node_modules/
- .azure/
- .git/
- action: rebuild
path: pnpm-lock.yaml
target: /app/pnpm-lock.yaml
docs:
container_name: docs
volumes:
- ./certs:/etc/certs:ro
- ./dynamic.yml:/etc/traefik/dynamic.yml
build:
context: .
dockerfile: ./packages/docs/Dockerfile
target: build
labels:
- "traefik.enable=true"
- "traefik.http.routers.docs.rule=Host(`docs.localhost`)"
- "traefik.enable=true"
develop:
watch:
- action: sync
path: ./packages/docs/
target: /app/packages/docs/
ignore:
- node_modules/
- .azure/
- .git/
- action: rebuild
path: pnpm-lock.yaml
target: /app/pnpm-lock.yaml
volumes:
pgadmin_data:
postgres_data:
redisinsight_cache:
driver: local