23 lines
446 B
YAML
23 lines
446 B
YAML
services:
|
|
fcm-test-app:
|
|
build: .
|
|
ports:
|
|
- "3066:3000"
|
|
environment:
|
|
- NODE_ENV=production
|
|
- TZ=${TZ:-UTC}
|
|
env_file:
|
|
- .env
|
|
volumes:
|
|
- fcm_data:/app/data
|
|
restart: unless-stopped
|
|
healthcheck:
|
|
test: ["CMD", "wget", "--no-verbose", "--tries=1", "--spider", "http://localhost:3000/"]
|
|
interval: 30s
|
|
timeout: 10s
|
|
retries: 3
|
|
start_period: 40s
|
|
|
|
volumes:
|
|
fcm_data:
|