forked from microsoft/presidio
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdocker-compose.yml
More file actions
31 lines (31 loc) · 774 Bytes
/
docker-compose.yml
File metadata and controls
31 lines (31 loc) · 774 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
services:
presidio-anonymizer:
image: ${REGISTRY_NAME}${IMAGE_PREFIX}presidio-anonymizer${TAG}
build:
context: ./presidio-anonymizer
args:
- NAME=presidio-anonymizer
environment:
- PORT=5001
ports:
- "5001:5001"
presidio-analyzer:
image: ${REGISTRY_NAME}${IMAGE_PREFIX}presidio-analyzer${TAG}
build:
context: ./presidio-analyzer
args:
- NAME=presidio-analyzer
environment:
- PORT=5001
ports:
- "5002:5001"
presidio-image-redactor:
image: ${REGISTRY_NAME}${IMAGE_PREFIX}presidio-image-redactor${TAG}
build:
context: ./presidio-image-redactor
args:
- NAME=presidio-image-redactor
environment:
- PORT=5001
ports:
- "5003:5001"