-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdocker-compose.yml
More file actions
42 lines (40 loc) · 1.29 KB
/
Copy pathdocker-compose.yml
File metadata and controls
42 lines (40 loc) · 1.29 KB
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
# =============================================================================
# SchulFit - Docker Compose Configuration
# =============================================================================
# Services:
# - dev: Development server with hot reload (port 5173)
# - prod: Production build with nginx (port 80)
# =============================================================================
services:
# ---------------------------------------------------------------------------
# Development Service
# ---------------------------------------------------------------------------
dev:
build:
context: .
target: dev
container_name: schulfit-dev
ports:
- "5173:5173"
volumes:
# Mount source code for hot reload
- .:/app
# Exclude node_modules (use container's version)
- /app/node_modules
environment:
- NODE_ENV=development
stdin_open: true
tty: true
# ---------------------------------------------------------------------------
# Production Service
# ---------------------------------------------------------------------------
prod:
build:
context: .
target: prod
container_name: schulfit-prod
ports:
- "80:80"
environment:
- NODE_ENV=production
restart: unless-stopped