Skip to content

Instantly share code, notes, and snippets.

@garystafford
Last active April 30, 2021 13:03
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 garystafford/3a0caac75b993d61a0bf0b830fb27a59 to your computer and use it in GitHub Desktop.
Save garystafford/3a0caac75b993d61a0bf0b830fb27a59 to your computer and use it in GitHub Desktop.
version: '3.9'
services:
nlp-client:
image: ${CUSTOMER_ACCOUNT}.dkr.ecr.${CUSTOMER_ECR_REGION}.amazonaws.com/nlp-client:1.1.0
networks:
- nlp-demo
ports:
- target: 8080
published: 8080
protocol: tcp
mode: host
environment:
- NLP_CLIENT_PORT
- RAKE_ENDPOINT
- PROSE_ENDPOINT
- LANG_ENDPOINT
- API_KEY
rake-app:
image: ${ISV_ACCOUNT}.dkr.ecr.${ISV_ECR_REGION}.amazonaws.com/rake-app:1.1.0
networks:
- nlp-demo
environment:
- RAKE_PORT
- API_KEY
prose-app:
image: ${CUSTOMER_ACCOUNT}.dkr.ecr.${CUSTOMER_ECR_REGION}.amazonaws.com/prose-app:1.1.0
networks:
- nlp-demo
environment:
- PROSE_PORT
- API_KEY
lang-app:
image: ${CUSTOMER_ACCOUNT}.dkr.ecr.${CUSTOMER_ECR_REGION}.amazonaws.com/lang-app:1.1.0
networks:
- nlp-demo
environment:
- LANG_PORT
- API_KEY
networks:
nlp-demo:
volumes:
data: {}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment