20 lines
419 B
YAML
20 lines
419 B
YAML
services:
|
|
ca-marketplace-scraper:
|
|
build: .
|
|
ports:
|
|
- "4005:4005"
|
|
environment:
|
|
- NODE_ENV=production
|
|
- PORT=4005
|
|
healthcheck:
|
|
test: ["CMD", "curl", "-f", "http://localhost:4005/api/status"]
|
|
interval: 30s
|
|
timeout: 10s
|
|
retries: 3
|
|
start_period: 5s
|
|
restart: unless-stopped
|
|
networks:
|
|
internal:
|
|
driver: bridge
|
|
name: ca-marketplace-scraper-network
|