mirror of
https://github.com/data-privacy-stack/presidio.git
synced 2026-07-23 11:20:55 -05:00
* fix docker cache * optimize docker files * fix up * remove NAME build arg * update ignore files * fix caching * / --------- Co-authored-by: Omri Mendels <omri374@users.noreply.github.com>
18 lines
414 B
YAML
18 lines
414 B
YAML
services:
|
|
presidio-anonymizer:
|
|
image: ${REGISTRY_NAME}${IMAGE_PREFIX}presidio-anonymizer${TAG}
|
|
build:
|
|
context: ./presidio-anonymizer
|
|
environment:
|
|
- PORT=5001
|
|
ports:
|
|
- "5001:5001"
|
|
presidio-analyzer:
|
|
image: ${REGISTRY_NAME}${IMAGE_PREFIX}presidio-analyzer${TAG}
|
|
build:
|
|
context: ./presidio-analyzer
|
|
environment:
|
|
- PORT=5001
|
|
ports:
|
|
- "5002:5001"
|