forked from ministryofjustice/prison-api
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdocker-compose-data-compliance.yml
57 lines (53 loc) · 1.42 KB
/
docker-compose-data-compliance.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
47
48
49
50
51
52
53
54
55
56
57
version: '3.1'
services:
oauth-server:
image: quay.io/hmpps/hmpps-auth:latest
container_name: oauth-server
networks:
- hmpps
ports:
- "9090:8080"
healthcheck:
test: ["CMD", "curl", "-f", "http://localhost:8080/auth/health"]
environment:
- SERVER_PORT=8080
- SPRING_PROFILES_ACTIVE=dev
prison-api:
image: quay.io/hmpps/prison-api:latest
container_name: prison-api
depends_on:
- localstack
networks:
- hmpps
ports:
- "8080:8080"
healthcheck:
test: ["CMD", "curl", "-f", "http://localhost:8080/health"]
environment:
- SERVER_PORT=8080
- SPRING_PROFILES_ACTIVE=nomis-hsqldb-localstack
localstack:
image: localstack/localstack
container_name: localstack
networks:
- hmpps
ports:
- "4567-4597:4567-4597"
- 8999:8080
environment:
- SERVICES=sns,sqs
- DEBUG=${DEBUG- }
- DATA_DIR=${DATA_DIR- }
- PORT_WEB_UI=${PORT_WEB_UI- }
- LAMBDA_EXECUTOR=${LAMBDA_EXECUTOR- }
- KINESIS_ERROR_PROBABILITY=${KINESIS_ERROR_PROBABILITY- }
- DOCKER_HOST=unix:///var/run/docker.sock
- AWS_EXECUTION_ENV=True
- DEFAULT_REGION=eu-west-2
- HOSTNAME_EXTERNAL=localstack
volumes:
- "${TMPDIR:-/tmp/localstack}:/tmp/localstack"
- "/var/run/docker.sock:/var/run/docker.sock"
- $PWD/localstack:/docker-entrypoint-initaws.d
networks:
hmpps: