-
Notifications
You must be signed in to change notification settings - Fork 189
Expand file tree
/
Copy pathdocker-compose.yml
More file actions
46 lines (43 loc) · 887 Bytes
/
Copy pathdocker-compose.yml
File metadata and controls
46 lines (43 loc) · 887 Bytes
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
services:
redis:
image: redis:7-alpine
ports:
- "6379:6379"
volumes:
- redis_data:/data
restart: unless-stopped
healthcheck:
test: ["CMD", "redis-cli", "ping"]
interval: 10s
timeout: 3s
retries: 5
profiles: [production]
app:
build:
context: .
target: production
ports:
- "8080:80"
environment:
- NODE_ENV=production
- REDIS_URL=redis://redis:6379
restart: unless-stopped
healthcheck:
test: ["CMD", "wget", "-qO-", "http://localhost/health"]
interval: 30s
timeout: 3s
retries: 3
app-dev:
image: node:20-alpine
working_dir: /app
volumes:
- .:/app
- /app/node_modules
ports:
- "5173:5173"
command: npm run dev -- --host
environment:
- NODE_ENV=development
profiles: [dev]
volumes:
redis_data: