17 lines
445 B
YAML
17 lines
445 B
YAML
version: '3.8'
|
|
|
|
services:
|
|
presidio-analyzer:
|
|
build:
|
|
context: .
|
|
dockerfile: Dockerfile.analyzer
|
|
restart: unless-stopped
|
|
# LA LIGNE QUI FORCE LA CONFIGURATION :
|
|
# On dit au script de démarrage de Presidio d'utiliser NOTRE fichier.
|
|
environment:
|
|
- PRESIDIO_CONF_FILE=/app/presidio_config/config.yaml
|
|
|
|
presidio-anonymizer:
|
|
image: mcr.microsoft.com/presidio-anonymizer:latest
|
|
restart: unless-stopped
|