generated from ministryofjustice/hmpps-template-kotlin
-
Notifications
You must be signed in to change notification settings - Fork 0
/
docker-compose.yml
43 lines (43 loc) · 1021 Bytes
/
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
version: "3"
services:
postgres:
image: postgres:15
networks:
- hmpps
container_name: hmpps-workload-postgres
restart: always
ports:
- '5432:5432'
environment:
- POSTGRES_PASSWORD=dev
- POSTGRES_USER=root
localstack:
image: localstack/localstack:3.0.2
networks:
- hmpps
container_name: hmpps-workload-localstack
ports:
- "4566:4566"
- "4571:4571"
- 8999:8080
environment:
- SERVICES=sns,sqs
- DEBUG=${DEBUG- }
- DOCKER_HOST=unix:///var/run/docker.sock
- DEFAULT_REGION=eu-west-2
volumes:
- "${TMPDIR:-/tmp/localstack}:/var/lib/localstack"
- "/var/run/docker.sock:/var/run/docker.sock"
wiremock:
image: wiremock/wiremock
networks:
- hmpps
container_name: hmpps-workload-wiremock
restart: always
ports:
- "8099:8099"
command: [ "--port","8099","--global-response-templating" ]
volumes:
- $PWD/wiremock:/home/wiremock:rw
networks:
hmpps: