-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathnft_tracker.yaml
More file actions
103 lines (103 loc) · 3.28 KB
/
nft_tracker.yaml
File metadata and controls
103 lines (103 loc) · 3.28 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
services:
nft-tracker-install:
image: ${NFT_TRACKER_IMAGE:-${HIVE_API_NODE_REGISTRY:-registry.hive.blog}/nft_tracker}:${NFT_TRACKER_VERSION:-${HIVE_API_NODE_VERSION}}
profiles:
- apps
- nft-tracker
environment:
POSTGRES_HOST: haf
networks:
haf-network:
command:
- install_app
- --swagger-url=${PUBLIC_HOSTNAME}
depends_on:
haf:
condition: service_healthy
nft-tracker-uninstall:
image: ${NFT_TRACKER_IMAGE:-${HIVE_API_NODE_REGISTRY:-registry.hive.blog}/nft_tracker}:${NFT_TRACKER_VERSION:-${HIVE_API_NODE_VERSION}}
profiles:
- nft-tracker-uninstall
environment:
POSTGRES_HOST: haf
networks:
haf-network:
command:
- uninstall_app
depends_on:
haf:
condition: service_healthy
nft-tracker-block-processing:
image: ${NFT_TRACKER_IMAGE:-${HIVE_API_NODE_REGISTRY:-registry.hive.blog}/nft_tracker}:${NFT_TRACKER_VERSION:-${HIVE_API_NODE_VERSION}}
profiles:
- apps
- nft-tracker
environment:
POSTGRES_HOST: haf
POSTGRES_USER: nfttracker_owner
networks:
haf-network:
command:
- process_blocks
healthcheck:
test: ["CMD-SHELL","/app/block-processing-healthcheck.sh"]
interval: 60s
timeout: 10s
retries: 3
start_period: 48h
depends_on:
nft-tracker-install:
condition: service_completed_successfully
haf:
condition: service_healthy
nft-tracker-postgrest:
image: ${HIVE_API_NODE_REGISTRY:-registry.hive.blog}/haf_api_node/postgrest:${HAF_API_NODE_VERSION:-${HIVE_API_NODE_VERSION}}
profiles:
- apps
- nft-tracker
environment:
PGRST_ADMIN_SERVER_PORT: 3001
PGRST_DB_URI: postgresql://nfttracker_user@pgbouncer:6432/haf_block_log?application_name=nft_tracker_postgrest
PGRST_DB_SCHEMA: nfttracker_endpoints
PGRST_DB_ANON_ROLE: nfttracker_user
PGRST_DB_POOL: 8
PGRST_DB_ROOT_SPEC: root
PGRST_DB_POOL_ACQUISITION_TIMEOUT: 10
PGRST_DB_EXTRA_SEARCH_PATH: nfttracker_app
# PGRST_OPENAPI_SERVER_PROXY_URI: http://${PUBLIC_HOSTNAME}/nfttracker_user/
PGRST_LOG_LEVEL: ${NFT_TRACKER_SERVER_LOG_LEVEL:-error}
labels:
# for Swagger UI
- "io.hive.swagger.url=/nft-tracker-api/"
- "io.hive.swagger.name=NFT Tracker API"
- "io.hive.swagger.order=6"
- "io.hive.healthcheck.port=7013"
healthcheck:
test: ["CMD-SHELL", "wget --timeout=2 -nv -t1 --spider 127.0.0.1:3001/ready || exit 1"]
interval: 10s
timeout: 3s
retries: 10
start_period: 1m
networks:
haf-network:
depends_on:
nft-tracker-install:
condition: service_completed_successfully
pgbouncer:
condition: service_healthy
nft-tracker-postgrest-rewriter:
image: ${NFT_TRACKER_REWRITER_IMAGE:-${HIVE_API_NODE_REGISTRY:-registry.hive.blog}/nft_tracker/postgrest-rewriter}:${NFT_TRACKER_VERSION:-${HIVE_API_NODE_VERSION}}
profiles:
- apps
- nft-tracker
healthcheck:
test: ["CMD-SHELL", "wget --timeout=2 -nv -t1 --spider 127.0.0.1:81/health || exit 1"]
interval: 10s
timeout: 3s
retries: 10
start_period: 1m
depends_on:
nft-tracker-postgrest:
condition: service_healthy
networks:
- haf-network