mirror of
https://github.com/nexus-stc/hyperboria
synced 2024-12-02 16:02:53 +01:00
fff80cd4e7
- fix(nexus): Preparing configs to be published - feat(nexus): Various fixes for opening left sources - fix(nexus): Fine-tune versions 1 internal commit(s) GitOrigin-RevId: 6c834cd3f4f5f18109a159a73503700dac63b0bb
45 lines
1.1 KiB
YAML
45 lines
1.1 KiB
YAML
---
|
|
services:
|
|
nexus-cognitron-web:
|
|
depends_on:
|
|
- summa
|
|
environment:
|
|
ENV_TYPE: production
|
|
NEXUS_COGNITRON_WEB_ipfs.gateway.url: https://cloudflare-ipfs.com
|
|
NEXUS_COGNITRON_WEB_meta_api.url: http://nexus-meta-api:8080
|
|
image: thesuperpirate/cognitron-web:latest
|
|
ports:
|
|
- '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'
|
|
summa:
|
|
environment:
|
|
ENV_TYPE: production
|
|
SUMMA_debug: 'true'
|
|
SUMMA_http.address: '0.0.0.0'
|
|
SUMMA_http.port: '8082'
|
|
image: izihawa/summa:latest
|
|
ports:
|
|
- '8082:8082'
|
|
volumes:
|
|
- '${DATA_PATH}:/summa/data'
|
|
version: "3"
|