generated from ministryofjustice/hmpps-template-typescript
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathdocker-compose.dev.yml
35 lines (33 loc) · 964 Bytes
/
docker-compose.dev.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
services:
redis:
ports:
- "6379:6379"
postgres:
ports:
- "5432:5432"
san-ui:
image: ghcr.io/ministryofjustice/hmpps-strengths-based-needs-assessments-ui:local
build:
target: development
command: npm run start:dev
ports:
- "3000:3000"
- "9229:9229"
volumes:
- ./app:/app/app
- ./assets:/app/assets
- ./bin:/app/bin
- ./cypress:/app/cypress
- ./esbuild:/app/esbuild
- ./server:/app/server
- ./test_results:/app/test_results
- ./.editorconfig:/app/.editorconfig
- ./.eslintcache:/app/.eslintcache
- ./.eslintrc.json:/app/.eslintrc.json
- ./.prettierrc.json:/app/.prettierrc.json
- ./eslint.config.mjs:/app/eslint.config.mjs
- ./logger.ts:/app/logger.ts
- ./package.json:/app/package.json
- ./package-lock.json:/app/package-lock.json
- ./server.ts:/app/server.ts
- ./tsconfig.json:/app/tsconfig.json