29 lines
812 B
YAML
29 lines
812 B
YAML
version: '3.8'
|
|
|
|
services:
|
|
presidio-analyzer:
|
|
build:
|
|
context: .
|
|
dockerfile: Dockerfile.analyzer
|
|
container_name: presidio-analyzer
|
|
restart: unless-stopped
|
|
ports:
|
|
- "5001"
|
|
environment:
|
|
- PRESIDIO_ANALYZER_DEFAULT_LANGUAGE=fr
|
|
- GUNICORN_CMD_ARGS="--log-level debug --error-logfile - --access-logfile -"
|
|
command: ["gunicorn", "--bind", "0.0.0.0:3000", "--workers", "1", "--log-level", "debug", "--error-logfile", "-", "presidio_analyzer.app:app"]
|
|
|
|
|
|
presidio-anonymizer:
|
|
image: mcr.microsoft.com/presidio-anonymizer:latest
|
|
container_name: presidio-anonymizer
|
|
restart: unless-stopped
|
|
ports:
|
|
- "5002"
|
|
healthcheck:
|
|
test: ["CMD", "curl", "-f", "http://localhost:5002/health"]
|
|
interval: 30s
|
|
timeout: 10s
|
|
retries: 3
|