mirror of
https://github.com/hpware/news-analyze.git
synced 2025-06-23 15:51:01 +08:00
16 lines
309 B
YAML
Executable File
16 lines
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
|