-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathdocker-compose.yaml
122 lines (105 loc) · 2.49 KB
/
docker-compose.yaml
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
volumes:
postgres:
services:
# This container runs the database.
postgres:
profiles:
- all
- development
image: postgres:16
restart: always
environment:
POSTGRES_PASSWORD: postgres
volumes:
- type: volume
source: postgres
target: /var/lib/postgres
ports:
- target: 5432
published: ${PUBLISH_PORT_POSTGRES}
protocol: tcp
mode: host
user: postgres
healthcheck:
test: ["CMD", "pg_isready"]
start_period: 5s
# start_interval: 10s
interval: 10s
timeout: 3s
retries: 3
# This is the base configuration for all Node.js containers.
runner: &base
profiles:
- all
image: node:20
working_dir: /workspace
environment:
NODE_ENV: development
volumes:
- type: bind
source: .
target: /workspace
# This container installs node modules from the package-lock.json file.
installer:
<<: *base
profiles:
- all
- development
# We would rather ignore scripts, but this repo depends on bcrypt, which
# requires a build step.
# command: npm ci --ignore-scripts
command: scripts/install.sh
healthcheck:
test: ["CMD", "test", "-f", "/tmp/package-lock.json"]
start_period: 5s
interval: 10s
timeout: 3s
retries: 6
# This container watches for changes and builds the application.
builder:
<<: *base
profiles:
- all
- development
depends_on:
installer:
condition: service_healthy
restart: false
command: npx lerna run --parallel --stream build:development:chained
healthcheck:
test: ["CMD", "test", "-f", "packages/example/dist/server/server.js"]
start_period: 5s
interval: 10s
timeout: 3s
retries: 6
# This container runs the server.
server:
<<: *base
profiles:
- all
- development
depends_on:
builder:
condition: service_healthy
restart: false
postgres:
condition: service_healthy
restart: false
command: npm start
environment:
NODE_ENV: development
PGHOST: postgres
PGUSER: postgres
PGPASSWORD: postgres
ports:
- target: 80
published: ${PUBLISH_PORT_DASHBOARD}
protocol: tcp
mode: host
healthcheck:
test: ["CMD", "curl", "-f", "http://localhost"]
start_period: 5s
# start_interval: 10s
interval: 10s
timeout: 3s
retries: 6