-
Notifications
You must be signed in to change notification settings - Fork 1
/
docker-compose-e2e.account.yaml
74 lines (69 loc) · 2.14 KB
/
docker-compose-e2e.account.yaml
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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
# yaml-language-server: $schema=https://raw.githubusercontent.com/compose-spec/compose-spec/master/schema/compose-spec.json
x-common-environment: &common-environment
FREQUENCY_API_WS_URL: ${FREQUENCY_API_WS_URL:-ws://frequency:9944}
SIWF_NODE_RPC_URL: ${SIWF_NODE_RPC_URL:-http://localhost:9944}
REDIS_URL: 'redis://redis:6379'
PROVIDER_ID: ${PROVIDER_ID:-1}
PROVIDER_ACCOUNT_SEED_PHRASE: ${PROVIDER_ACCOUNT_SEED_PHRASE:-//Alice}
WEBHOOK_FAILURE_THRESHOLD: 3
WEBHOOK_RETRY_INTERVAL_SECONDS: 10
HEALTH_CHECK_MAX_RETRIES: 4
HEALTH_CHECK_MAX_RETRY_INTERVAL_SECONDS: 10
HEALTH_CHECK_SUCCESS_THRESHOLD: 10
CAPACITY_LIMIT: '{"type":"percentage", "value":80}'
SIWF_URL: 'https://projectlibertylabs.github.io/siwf/v1/ui'
IPFS_ENDPOINT: ${IPFS_ENDPOINT:-http://ipfs:5001}
IPFS_GATEWAY_URL: ${IPFS_GATEWAY_URL:-https://ipfs.io/ipfs/[CID]}
IPFS_BASIC_AUTH_USER: ${IPFS_BASIC_AUTH_USER:-""}
IPFS_BASIC_AUTH_SECRET: ${IPFS_BASIC_AUTH_SECRET:-""}
QUEUE_HIGH_WATER: 1000
CHAIN_ENVIRONMENT: dev
DEBUG: true
x-account-service-env: &account-service-env
BLOCKCHAIN_SCAN_INTERVAL_SECONDS: 1
TRUST_UNFINALIZED_BLOCKS: true
WEBHOOK_BASE_URL: 'http://host.docker.internal:3001/webhooks/account-service'
services:
redis:
profiles:
- e2e
frequency:
profiles:
- e2e
- local-node
mock-webhook-server:
profiles:
- skip
ipfs:
profiles:
- skip
gateway-base:
profiles:
- account
content-publishing-service-worker:
profiles:
- skip
content-publishing-service-api:
profiles:
- skip
content-watcher-service:
profiles:
- skip
graph-service-api:
profiles:
- skip
graph-service-worker:
profiles:
- skip
account-service-api:
# It is not possible to override a single key in a map, so we replace the entire environment map
environment:
<<: [*common-environment, *account-service-env]
profiles:
- account
account-service-worker:
# It is not possible to override a single key in a map, so we replace the entire environment map
environment:
<<: [*common-environment, *account-service-env]
profiles:
- account