-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathdocker-compose.yml
More file actions
28 lines (28 loc) · 954 Bytes
/
docker-compose.yml
File metadata and controls
28 lines (28 loc) · 954 Bytes
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
services:
igrp-application-center:
image: registry.nosi.cv/igrp/igrp-application-center:latest
hostname: igrp-application-center
labels:
type: 'frontend'
name: 'igrp-application-center'
env_file:
- .env
environment:
- KEYCLOAK_ISSUER=https://demoigrp.nosi.cv/auth/realms/igrp
- KEYCLOAK_CLIENT_ID=access-management
- KEYCLOAK_CLIENT_SECRET=vbBjOQcIhG897ZIRtKa7NHDy9sJNZY07
- NEXTAUTH_URL=http://localhost:3000
- NEXTAUTH_SECRET=uUb44RSVTl+XzkpQt7W/lfRzGChdpb5rguUPh+Tb52w=
- IGRP_ACCESS_MANAGEMENT_API=https://api-demoigrp.nosi.cv/igrp-access-management
- IGRP_APP_CODE=APP_IGRP_CENTER
- IGRP_PREVIEW_MODE=false
- NODE_ENV=production
healthcheck:
test: ['CMD', 'curl', '-f', 'http://localhost:3000/api/health']
interval: 30s
timeout: 10s
retries: 3
start_period: 60s
restart: unless-stopped
ports:
- '3001:3000'