Skip to content

Instantly share code, notes, and snippets.

@ferronrsmith
Last active August 28, 2019 04:23
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save ferronrsmith/155cb2dc0470ecf7a82f2305718308cb to your computer and use it in GitHub Desktop.
Save ferronrsmith/155cb2dc0470ecf7a82f2305718308cb to your computer and use it in GitHub Desktop.
Presidio
version: '3'
services:
redis:
image: redis
presidio-analyzer:
environment:
- GRPC_PORT=3000
image: "mcr.microsoft.com/presidio-analyzer:latest-dev"
presidio-anonymizer:
environment:
- GRPC_PORT=3001
image: "mcr.microsoft.com/presidio-anonymizer:latest-dev"
presidio-recognizers-store:
environment:
- GRPC_PORT=3004
- "REDIS_URL=redis:6379"
image: "mcr.microsoft.com/presidio-recognizers-store:latest-dev"
presidio-ocr:
environment:
- GRPC_PORT=3003
image: "mcr.microsoft.com/presidio-ocr:latest-dev"
presidio-api:
environment:
- WEB_PORT=8080
- "ANALYZER_SVC_ADDRESS=presidio-analyzer:3000"
- "ANONYMIZER_SVC_ADDRESS=presidio-anonymizer:3001"
- "OCR_SVC_ADDRESS=presidio-ocr:3003"
- "RECOGNIZERS_STORE_SVC_ADDRESS=presidio-recognizers-store:3004"
image: "mcr.microsoft.com/presidio-api:latest-dev"
ports:
- "8080"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment