21 lines
403 B
YAML
21 lines
403 B
YAML
version: '3.8'
|
|
|
|
services:
|
|
zugferd-service:
|
|
build:
|
|
context: .
|
|
dockerfile: Dockerfile
|
|
ports:
|
|
- "5000:5000"
|
|
volumes:
|
|
- ./src:/app/src:ro
|
|
environment:
|
|
- LOG_LEVEL=INFO
|
|
healthcheck:
|
|
test: ["CMD", "curl", "-f", "http://localhost:5000/health"]
|
|
interval: 30s
|
|
timeout: 10s
|
|
retries: 3
|
|
start_period: 10s
|
|
restart: unless-stopped
|