generated from ministryofjustice/hmpps-template-kotlin
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdocker-compose.yml
46 lines (44 loc) · 1.16 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
45
46
version: "3"
services:
hmpps-health-and-medication-api:
build:
context: .
networks:
- hmpps
container_name: hmpps-health-and-medication-api
ports:
- "8080:8080"
healthcheck:
test: ["CMD", "curl", "-f", "http://localhost:8080/health/ping"]
environment:
- SERVER_PORT=8080
- HMPPS_AUTH_URL=http://hmpps-auth:8080/auth
- SPRING_PROFILES_ACTIVE=dev
hmpps-auth:
image: quay.io/hmpps/hmpps-auth:latest
networks:
- hmpps
container_name: hmpps-auth
ports:
- "8090:8080"
healthcheck:
test: ["CMD", "curl", "-f", "http://localhost:8080/auth/health"]
environment:
- SERVER_PORT=8080
- SPRING_PROFILES_ACTIVE=dev
- APPLICATION_AUTHENTICATION_UI_ALLOWLIST=0.0.0.0/0
health-and-medication-data-db:
image: postgres
networks:
- hmpps
container_name: health-and-medication-data-db
restart: unless-stopped
ports:
- "9432:5432"
environment:
- POSTGRES_PASSWORD=health-and-medication-data
- POSTGRES_USER=health-and-medication-data
- POSTGRES_DB=health-and-medication-data
- TZ="Europe/London"
networks:
hmpps: