forked from hmcts/document-management-store-app
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdocker-compose.yml
More file actions
30 lines (28 loc) · 792 Bytes
/
docker-compose.yml
File metadata and controls
30 lines (28 loc) · 792 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
version: '2.1'
services:
dm-store:
build:
context: .
image: hmcts/dm-store:latest
environment:
- SERVER_PORT=8080
- SPRING_DATASOURCE_URL=jdbc:postgresql://dm-store-db:5432/evidence
- IDAM_USER_BASE_URI=http://idam-api:8080
- IDAM_S2S_BASE_URI=http://service-auth-provider-api:8080
# these environment variables are used by java-logging library
- JSON_CONSOLE_PRETTY_PRINT=false
- ROOT_LOGGING_LEVEL
- REFORM_SERVICE_TYPE=java
- REFORM_SERVICE_NAME=dm-store
- REFORM_TEAM=evidence
- REFORM_ENVIRONMENT=docker
links:
- dm-store-db
depends_on:
- dm-store-db
ports:
- $SERVER_PORT:8080
dm-store-db:
build:
context: ./docker/database
image: hmcts/dm-store-db:latest