2021-01-29 11:18:22 +03:00
|
|
|
---
|
|
|
|
services:
|
|
|
|
nexus-cognitron-web:
|
|
|
|
depends_on:
|
|
|
|
- summa
|
|
|
|
environment:
|
|
|
|
ENV_TYPE: production
|
2021-04-23 18:23:02 +03:00
|
|
|
NEXUS_COGNITRON_WEB_ipfs.gateway.url: https://cloudflare-ipfs.com
|
|
|
|
NEXUS_COGNITRON_WEB_meta_api.url: http://nexus-meta-api:8080
|
2021-01-29 11:18:22 +03:00
|
|
|
image: thesuperpirate/cognitron-web:latest
|
|
|
|
ports:
|
2021-04-23 18:23:02 +03:00
|
|
|
- '3000:80'
|
|
|
|
nexus-meta-api:
|
|
|
|
depends_on:
|
|
|
|
- summa
|
|
|
|
environment:
|
|
|
|
ENV_TYPE: development
|
|
|
|
NEXUS_META_API_grpc.address: '0.0.0.0'
|
|
|
|
NEXUS_META_API_grpc.port: 9090
|
|
|
|
NEXUS_META_API_summa.url: 'http://summa:8082'
|
|
|
|
image: thesuperpirate/meta-api:latest
|
|
|
|
ports:
|
|
|
|
- '9090:9090'
|
|
|
|
nexus-meta-api-envoy:
|
|
|
|
depends_on:
|
|
|
|
- nexus-meta-api
|
|
|
|
image: envoyproxy/envoy-dev:latest
|
|
|
|
ports:
|
|
|
|
- '8080:8080'
|
|
|
|
- '9901:9901'
|
|
|
|
volumes:
|
|
|
|
- './nexus-meta-api-envoy.yaml:/etc/envoy/envoy.yaml'
|
2021-01-29 11:18:22 +03:00
|
|
|
summa:
|
|
|
|
environment:
|
|
|
|
ENV_TYPE: production
|
2021-04-23 18:23:02 +03:00
|
|
|
SUMMA_debug: 'true'
|
|
|
|
SUMMA_http.address: '0.0.0.0'
|
|
|
|
SUMMA_http.port: '8082'
|
2021-01-29 11:18:22 +03:00
|
|
|
image: izihawa/summa:latest
|
|
|
|
ports:
|
2021-04-23 18:23:02 +03:00
|
|
|
- '8082:8082'
|
2021-01-29 11:18:22 +03:00
|
|
|
volumes:
|
2021-04-23 18:23:02 +03:00
|
|
|
- '${DATA_PATH}:/summa/data'
|
2021-01-29 11:36:47 +03:00
|
|
|
version: "3"
|