18 lines
400 B
YAML
18 lines
400 B
YAML
services:
|
|
hubgw:
|
|
build: .
|
|
ports:
|
|
- "8087:8080"
|
|
environment:
|
|
- PYTHONPATH=/app/src
|
|
volumes:
|
|
# Монтируем логи если нужно
|
|
- ./logs:/app/logs
|
|
restart: unless-stopped
|
|
healthcheck:
|
|
test: ["CMD", "curl", "-f", "http://localhost:8080/api/v1/health"]
|
|
interval: 30s
|
|
timeout: 10s
|
|
retries: 3
|
|
start_period: 40s
|