forked from crux-bphc/chronofactorem-rewrite
-
Notifications
You must be signed in to change notification settings - Fork 0
/
docker-compose.yml
104 lines (98 loc) · 2.18 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
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
version: "3.8"
services:
db:
image: "postgres:15.3-bookworm"
env_file:
- .env
ports:
- "${PGPORT}:${PGPORT}"
healthcheck:
test: ["CMD", "pg_isready", "-d", "${POSTGRES_DB}"]
interval: 10s
timeout: 30s
retries: 3
volumes:
- ./data:/var/lib/postgresql/data
profiles:
- "dev"
- "prod"
- "ingestion"
db-testing:
image: "postgres:15.3-bookworm"
env_file:
- .env.testing
ports:
- "${PGPORT}:${PGPORT}"
volumes:
- ./data:/var/lib/postgresql/data
healthcheck:
test: ["CMD", "pg_isready", "-d", "${POSTGRES_DB}"]
interval: 10s
timeout: 30s
retries: 3
profiles:
- "testing"
backend-dev:
build:
context: .
dockerfile: ./docker/dev/Dockerfile
env_file:
- .env
depends_on:
db:
condition: service_healthy
volumes:
- ./patches:/usr/local/app/patches
- ./src:/usr/local/app/src
- ./tsconfig.json:/usr/local/app/tsconfig.json
ports:
- "${PORT}:${PORT}"
profiles:
- "dev"
backend-prod:
build:
context: .
dockerfile: ./docker/prod/Dockerfile
env_file:
- .env
depends_on:
db:
condition: service_healthy
ports:
- "${PORT}:${PORT}"
profiles:
- "prod"
ingestion:
command: ["pnpm", "ts-node", "src/ingest.ts"]
build:
context: .
dockerfile: ./docker/dev/Dockerfile
env_file:
- .env
depends_on:
db:
condition: service_healthy
volumes:
- ./patches:/usr/local/app/patches
- ./src:/usr/local/app/src
- ./tsconfig.json:/usr/local/app/tsconfig.json
profiles:
- "ingestion"
backend-testing:
command: ["pnpm", "jest", "--runInBand", "--verbose"]
build:
context: .
dockerfile: ./docker/dev/Dockerfile
env_file:
- .env.testing
depends_on:
db-testing:
condition: service_healthy
volumes:
- ./patches:/usr/local/app/patches
- ./src:/usr/local/app/src
- ./tsconfig.json:/usr/local/app/tsconfig.json
- ./jest.config.js:/usr/local/app/jest.config.js
tty: true
profiles:
- "testing"