-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdocker-compose.yml
More file actions
104 lines (104 loc) · 2.95 KB
/
docker-compose.yml
File metadata and controls
104 lines (104 loc) · 2.95 KB
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
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
version: "3.8"
services:
demo-consumer:
image: ghcr.io/withobsrvr/consumer-app:latest
container_name: -demo-consumer
command:
- npm
- start
- --
- "409907"
- "409948"
environment:
FLOWCTL_ENDPOINT: localhost:8080
SOURCE_SERVICE_ADDRESS: ttp-processor:50053
ports:
- 3000:3000
depends_on:
- ttp-processor
networks:
- pipeline
healthcheck:
test:
- CMD
- wget
- --quiet
- --tries=1
- --spider
- /health
interval: 10s
timeout: 5s
retries: 3
start_period: 5s
restart: unless-stopped
labels:
com.obsrvr.component: sink
com.obsrvr.type: demo-consumer
stellar-source:
image: ghcr.io/withobsrvr/stellar-live-source-datalake:latest
container_name: -stellar-source
command:
- ./stellar_live_source_datalake
environment:
BUCKET_NAME: obsrvr-stellar-ledger-data-testnet-data/landing/ledgers
FILES_PER_PARTITION: "64000"
FLOWCTL_ENDPOINT: localhost:8080
GOOGLE_APPLICATION_CREDENTIALS: ${HOME}/.config/gcloud/application_default_credentials.json
LEDGERS_PER_FILE: "1"
STORAGE_TYPE: GCS
ports:
- 50052:50052
networks:
- pipeline
healthcheck:
test:
- CMD
- wget
- --quiet
- --tries=1
- --spider
- /health
interval: 10s
timeout: 5s
retries: 3
start_period: 5s
restart: unless-stopped
labels:
com.obsrvr.component: source
com.obsrvr.type: stellar-source
ttp-processor:
image: ghcr.io/withobsrvr/ttp-processor:latest
container_name: -ttp-processor
command:
- ./ttp_processor_server
environment:
FLOWCTL_ENDPOINT: localhost:8080
HEALTH_PORT: "8089"
NETWORK_PASSPHRASE: Test SDF Network ; September 2015
SOURCE_SERVICE_ADDRESS: stellar-source:50052
ports:
- 50053:50053
- 8089:8089
depends_on:
- stellar-source
networks:
- pipeline
healthcheck:
test:
- CMD
- wget
- --quiet
- --tries=1
- --spider
- /health
interval: 10s
timeout: 5s
retries: 3
start_period: 5s
restart: unless-stopped
labels:
com.obsrvr.component: processor
com.obsrvr.order: "0"
com.obsrvr.type: token-transfer
networks:
pipeline: {}