19 lines
438 B
YAML
19 lines
438 B
YAML
services:
|
|
qr-invoice:
|
|
build: .
|
|
container_name: qr-invoice-service
|
|
ports:
|
|
- "3050:3000"
|
|
environment:
|
|
- NODE_ENV=production
|
|
- PORT=3000
|
|
- HOST=0.0.0.0
|
|
- LOG_LEVEL=info
|
|
restart: unless-stopped
|
|
healthcheck:
|
|
test: ["CMD", "wget", "--no-verbose", "--tries=1", "--spider", "http://localhost:3000/health"]
|
|
interval: 30s
|
|
timeout: 3s
|
|
retries: 3
|
|
start_period: 5s
|