-
Notifications
You must be signed in to change notification settings - Fork 0
/
docker-compose.yml
44 lines (42 loc) · 1.2 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
version: "3.8"
services:
starterkit:
container_name: starterkit
extends:
file: ./docker-compose-common.yml
service: micro
image: fluffycore.starterkit:latest
ports:
- "50051:50051"
- "50052:50052"
- "50053:50053"
- "9044:9044"
environment:
APPLICATION_NAME: "starterkit"
APPLICATION_ENVIRONMENT: "DOCKER"
LOG_LEVEL": "debug"
PRETTY_LOG: "true"
PORT: "50051"
GRPC_GATEWAY_ENABLED: "true"
REST_PORT: "50052"
oauth2Port: "50053"
customString: "In Flames"
someSecret: "1234567890"
ENABLE_GRPC_SERVER_REFLECTION: "true"
jwtValidators__issuers: "http://starterkit:50053"
jwtValidators__jwksUrls: "http://starterkit:50053/.well-known/jwks"
configFiles__clientPath: "/config/clients.json"
volumes:
- ./config/clients.json:/config/clients.json
entrypoint: ["/app/server", "serve"]
whoami:
container_name: whoami
extends:
file: ./docker-compose-common.yml
service: micro
image: containous/whoami
security_opt:
- no-new-privileges:true
depends_on:
starterkit:
condition: service_healthy