mirror of
https://github.com/hpware/news-analyze.git
synced 2025-06-23 13:04:23 +00:00
15 lines
No EOL
309 B
YAML
Executable file
15 lines
No EOL
309 B
YAML
Executable file
version: '3.8'
|
|
|
|
services:
|
|
newsanalyze-service:
|
|
build: .
|
|
ports:
|
|
- "127.0.0.1:36694:3000"
|
|
environment:
|
|
- NODE_ENV=production
|
|
restart: unless-stopped
|
|
healthcheck:
|
|
test: ["CMD", "curl", "-f", "http://localhost:3000"]
|
|
interval: 30s
|
|
timeout: 10s
|
|
retries: 3 |