mirror of
https://github.com/pezkuwichain/pezkuwi-subquery.git
synced 2026-04-22 01:57:58 +00:00
7b58fa0e4a
- Add handleBlock to query live chain state for existing pool members - Add second GraphQL engine container for Asset Hub schema (port 3001) - Register block handler in pezkuwi-assethub.yaml
127 lines
3.0 KiB
YAML
127 lines
3.0 KiB
YAML
version: "3.8"
|
|
services:
|
|
postgres:
|
|
container_name: postgres-pezkuwi
|
|
image: postgres:16-alpine
|
|
ports:
|
|
- 5432:5432
|
|
volumes:
|
|
- pgdata:/var/lib/postgresql/data
|
|
- ./docker/init:/docker-entrypoint-initdb.d
|
|
healthcheck:
|
|
test: ["CMD-SHELL", "pg_isready -U postgres"]
|
|
interval: 5s
|
|
timeout: 5s
|
|
retries: 10
|
|
environment:
|
|
POSTGRES_PASSWORD: pezkuwi_subquery_2024
|
|
restart: always
|
|
|
|
subquery-node-relay:
|
|
container_name: node-pezkuwi-relay
|
|
build:
|
|
context: .
|
|
dockerfile: docker/Dockerfile.node
|
|
depends_on:
|
|
postgres: { condition: service_healthy }
|
|
restart: always
|
|
environment:
|
|
TZ: UTC
|
|
DB_USER: postgres
|
|
DB_PASS: pezkuwi_subquery_2024
|
|
DB_DATABASE: postgres
|
|
DB_HOST: postgres
|
|
DB_PORT: 5432
|
|
volumes:
|
|
- ./:/app/project
|
|
command:
|
|
- -f=/app/project/pezkuwi.yaml
|
|
- --db-schema=subquery-pezkuwi-staking
|
|
- --disable-historical=true
|
|
- --batch-size=30
|
|
|
|
subquery-node-assethub:
|
|
container_name: node-pezkuwi-assethub
|
|
build:
|
|
context: .
|
|
dockerfile: docker/Dockerfile.node
|
|
depends_on:
|
|
postgres: { condition: service_healthy }
|
|
restart: always
|
|
environment:
|
|
TZ: UTC
|
|
DB_USER: postgres
|
|
DB_PASS: pezkuwi_subquery_2024
|
|
DB_DATABASE: postgres
|
|
DB_HOST: postgres
|
|
DB_PORT: 5432
|
|
volumes:
|
|
- ./:/app/project
|
|
command:
|
|
- -f=/app/project/pezkuwi-assethub.yaml
|
|
- --db-schema=subquery-pezkuwi-assethub
|
|
- --disable-historical=true
|
|
- --batch-size=30
|
|
|
|
graphql-engine:
|
|
container_name: query-pezkuwi
|
|
image: onfinality/subql-query:v1.5.0
|
|
ports:
|
|
- 3000:3000
|
|
depends_on:
|
|
- subquery-node-relay
|
|
restart: always
|
|
environment:
|
|
DB_USER: postgres
|
|
DB_PASS: pezkuwi_subquery_2024
|
|
DB_DATABASE: postgres
|
|
DB_HOST: postgres
|
|
DB_PORT: 5432
|
|
command:
|
|
- --name=subquery-pezkuwi-staking
|
|
- --playground
|
|
- --indexer=http://subquery-node-relay:3000
|
|
|
|
graphql-engine-assethub:
|
|
container_name: query-pezkuwi-ah
|
|
image: onfinality/subql-query:v1.5.0
|
|
ports:
|
|
- 3001:3000
|
|
depends_on:
|
|
- subquery-node-assethub
|
|
restart: always
|
|
environment:
|
|
DB_USER: postgres
|
|
DB_PASS: pezkuwi_subquery_2024
|
|
DB_DATABASE: postgres
|
|
DB_HOST: postgres
|
|
DB_PORT: 5432
|
|
command:
|
|
- --name=subquery-pezkuwi-assethub
|
|
- --playground
|
|
- --indexer=http://subquery-node-assethub:3000
|
|
|
|
noter-bot:
|
|
container_name: noter-pezkuwi
|
|
build:
|
|
context: ./noter
|
|
dockerfile: Dockerfile
|
|
depends_on:
|
|
postgres: { condition: service_healthy }
|
|
restart: unless-stopped
|
|
secrets:
|
|
- noter_mnemonic
|
|
environment:
|
|
TZ: UTC
|
|
RELAY_RPC: ws://217.77.6.126:9944
|
|
ASSET_HUB_RPC: ws://217.77.6.126:40944
|
|
PEOPLE_RPC: ws://217.77.6.126:41944
|
|
SCAN_INTERVAL_MS: "300000"
|
|
|
|
secrets:
|
|
noter_mnemonic:
|
|
file: ./secrets/noter_mnemonic.txt
|
|
|
|
volumes:
|
|
pgdata:
|