generated from ministryofjustice/hmpps-template-kotlin
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdocker-compose.yml
More file actions
142 lines (135 loc) · 3.95 KB
/
docker-compose.yml
File metadata and controls
142 lines (135 loc) · 3.95 KB
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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
services:
hmpps-auth:
image: ghcr.io/ministryofjustice/hmpps-auth:latest
networks:
- hmpps
depends_on:
- auth-db
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,delius,local-postgres
- SPRING_JPA_PROPERTIES_HIBERNATE_SHOW_SQL=false
- SPRING_H2_CONSOLE_SETTINGS_WEBALLOWOTHERS=true
- SPRING_DATASOURCE_URL=jdbc:postgresql://auth-db:5432/auth-db
- APPLICATION_AUTHENTICATION_UI_ALLOWLIST=0.0.0.0/0
hmpps-manage-users:
image: ghcr.io/ministryofjustice/hmpps-manage-users-api:latest
networks:
- hmpps
container_name: hmpps-manage-users
depends_on:
- hmpps-auth
- nomis-user-roles-api
- hmpps-external-users-api
ports:
- "8096:8096"
healthcheck:
test: [ "CMD", "curl", "-f", "http://localhost:8096/health" ]
environment:
- SERVER_PORT=8096
- HMPPS_AUTH_ENDPOINT_URL=http://hmpps-auth:8090/auth
- API_BASE_URL_OAUTH=http://hmpps-auth:8090/auth
- SPRING_PROFILES_ACTIVE=dev
- EXTERNAL_USERS_ENDPOINT_URL=http://hmpps-external-users-api:8098
- NOMIS_ENDPOINT_URL=http://nomis-user-roles-api:8097
- DELIUS_ENDPOINT_URL=http://wiremock:8080/delius
- AUTHORIZATION_SERVER_TOKEN_ENDPOINT_URL=http://hmpps-auth:8090/auth/oauth/token
nomis-user-roles-api:
image: ghcr.io/ministryofjustice/nomis-user-roles-api:latest
networks:
- hmpps
container_name: nomis-user-roles-api
depends_on:
- hmpps-auth
ports:
- "8097:8097"
healthcheck:
test: [ "CMD", "curl", "-f", "http://localhost:8097/health" ]
environment:
- SERVER_PORT=8097
- SPRING_PROFILES_ACTIVE=dev
- API_BASE_URL_OAUTH=http://hmpps-auth:8090/auth
hmpps-external-users-api:
image: ghcr.io/ministryofjustice/hmpps-external-users-api:latest
networks:
- hmpps
container_name: hmpps-external-users-api
depends_on:
- auth-db
- hmpps-auth
ports:
- "8098:8098"
healthcheck:
test: ["CMD", "curl", "-f", "http://localhost:8098/health/ping"]
environment:
- SERVER_PORT=8098
- SPRING_PROFILES_ACTIVE=dev
- API_BASE_URL_OAUTH=http://hmpps-auth:8090/auth
- SPRING_R2DBC_URL=r2dbc:postgresql://auth-db:5432/auth-db?sslmode=prefer
- SPRING_FLYWAY_URL=jdbc:postgresql://auth-db:5432/auth-db?sslmode=prefer
- SPRING_R2DBC_USERNAME=admin
- SPRING_R2DBC_PASSWORD=admin_password
- HMPPS_SQS_PROVIDER=localstack
- HMPPS_SQS_LOCALSTACKURL=http://localstack:4566
auth-db:
image: postgres:18
networks:
- hmpps
restart: always
ports:
- "5434:5432"
environment:
- POSTGRES_PASSWORD=admin_password
- POSTGRES_USER=admin
- POSTGRES_DB=auth-db
healthcheck:
test: pg_isready -d auth-db
postgresql:
image: postgres:18.3
container_name: postgres-api
networks:
- hmpps
restart: always
ports:
- '5432:5432'
healthcheck:
test: [ "CMD", "pg_isready", "--username=admin", "--dbname=postgres" ]
interval: 10s
timeout: 5s
retries: 5
environment:
- POSTGRES_USER=admin
- POSTGRES_PASSWORD=admin_password
wiremock:
image: wiremock/wiremock:3.13.2
networks:
- hmpps
restart: always
ports:
- "9091:8080"
volumes:
- ./wiremock_mappings:/home/wiremock/mappings
command: >
--verbose
localstack:
image: localstack/localstack:4
networks:
- hmpps
container_name: hmpps-com-support-localstack-api
ports:
- "4566:4566"
- "8999:8080"
environment:
- SERVICES=sns,sqs
- DEBUG=${DEBUG- }
- DOCKER_HOST=unix:///var/run/docker.sock
volumes:
- "${TMPDIR:-/tmp/localstack}:/var/lib/localstack"
- "/var/run/docker.sock:/var/run/docker.sock"
networks:
hmpps: