20 lines
423 B
YAML
20 lines
423 B
YAML
version: '3.8'
|
|
|
|
services:
|
|
worktime:
|
|
build: .
|
|
ports:
|
|
- "3001:3001"
|
|
volumes:
|
|
- ./data:/app/data
|
|
- ./user-data.json:/app/user-data.json
|
|
environment:
|
|
- NODE_ENV=production
|
|
- PORT=3001
|
|
restart: unless-stopped
|
|
healthcheck:
|
|
test: ["CMD", "curl", "-f", "http://localhost:3001/api/health"]
|
|
interval: 30s
|
|
timeout: 10s
|
|
retries: 3
|
|
start_period: 40s |