-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcompose.yaml
More file actions
38 lines (36 loc) · 1009 Bytes
/
compose.yaml
File metadata and controls
38 lines (36 loc) · 1009 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
29
30
31
32
33
34
35
36
37
38
name: loki
services:
backend:
build:
context: .
dockerfile: Dockerfile
ports:
- "8080:8080"
environment:
- APP_NAME=loki
- APP_ADDRESS=0.0.0.0:8080
- CLIENT_URL=http://localhost:3000
- CERT_PATH=/run/certs
- SMART_ID_API_URL=https://sid.demo.sk.ee/smart-id-rp/v2
- SMART_ID_DISPLAY_TEXT=Enter PIN1
- MOBILE_ID_API_URL=https://tsp.demo.sk.ee/mid-api
- MOBILE_ID_DISPLAY_TEXT=Enter PIN1
- MOBILE_ID_TEXT_FORMAT=GSM-7
- MOBILE_ID_LANGUAGE=ENG
- RELYING_PARTY_UUID=00000000-0000-0000-0000-000000000000
- RELYING_PARTY_NAME=DEMO
- DATABASE_DSN=postgres://postgres:postgres@database:5432/loki-development?sslmode=disable
- REDIS_URI=redis://redis:6379/0
- TELEMETRY_URI=telemetry:4317
- LOG_LEVEL=info
volumes:
- ./certs:/run/certs
networks:
- loki-network
networks:
loki-network:
name: loki-network
external: true
volumes:
loki-database:
loki-redis: