29 lines
708 B
YAML
29 lines
708 B
YAML
version: '3.8'
|
|
|
|
services:
|
|
presidio-analyzer:
|
|
image: mcr.microsoft.com/presidio-analyzer:latest
|
|
container_name: presidio-analyzer
|
|
restart: unless-stopped
|
|
ports:
|
|
- "3000"
|
|
environment:
|
|
- PRESIDIO_ANALYZER_DEFAULT_LANGUAGE=en
|
|
healthcheck:
|
|
test: ["CMD", "curl", "-f", "http://localhost:3000/health"]
|
|
interval: 30s
|
|
timeout: 10s
|
|
retries: 3
|
|
|
|
presidio-anonymizer:
|
|
image: mcr.microsoft.com/presidio-anonymizer:latest
|
|
container_name: presidio-anonymizer
|
|
restart: unless-stopped
|
|
ports:
|
|
- "3000"
|
|
healthcheck:
|
|
test: ["CMD", "curl", "-f", "http://localhost:3000/health"]
|
|
interval: 30s
|
|
timeout: 10s
|
|
retries: 3
|