-
Notifications
You must be signed in to change notification settings - Fork 1
/
docker-compose-vote-verification.yml
33 lines (33 loc) · 1.3 KB
/
docker-compose-vote-verification.yml
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
32
33
version: '3.8'
services:
follower-api:
image: pro.registry.gitlab.metadata.dev.cf-deployments.org/base-infrastructure/docker-registry/voting-ledger-follower-app:0.2.75
restart: always
environment:
- SPRING_PROFILES_ACTIVE=prod
- CORS_ALLOWED_ORIGINS=http://localhost:8080
- CARDANO_NETWORK=MAIN
- ORGANISER_STAKE_ADDRESS=stake1u84rc0rq5jt5jcx7s9fweknxv6jxvgjyqyfpwlgn0x43gpqe3tet3
- BIND_ON_EVENT_IDS=CIP-1694_Pre_Ratification
- CARDANO_NODE_HOST=relays-new.cardano-mainnet.iohk.io
- CARDANO_NODE_PORT=3001
- CARDANO_NODE_PROTOCOL_MAGIC=764824073
- YACI_STORE_CARDANO_SYNC_START_BLOCK_HASH=285f58fd09cbb95ac5ffd6f644f7907dfb3faff63155b8a86a9c7b0e99503397
- YACI_STORE_CARDANO_SYNC_START_SLOT=103737886
- '9090:9090'
verification-app:
image: pro.registry.gitlab.metadata.dev.cf-deployments.org/base-infrastructure/docker-registry/voting-verification-app:0.2.75
restart: always
environment:
- LEDGER_FOLLOWER_APP_URL=http://follower-api:9090
- CORS_ALLOWED_ORIGINS=http://localhost:8080
ports:
- '9092:9092'
verification-ui:
build:
context: ui/verification-app
environment:
- REACT_APP_VOTING_VERIFICATION_APP_SERVER_URL=http://localhost:9092
restart: always
ports:
- '8080:8080'