52 lines
2.7 KiB
YAML
52 lines
2.7 KiB
YAML
version: '3.1'
|
|
|
|
services:
|
|
|
|
rabbitmq:
|
|
container_name: rabbitmq
|
|
image: "rabbitmq:3-alpine"
|
|
expose:
|
|
- "5672"
|
|
restart: unless-stopped
|
|
|
|
heimdalld:
|
|
build: &ref_0
|
|
args:
|
|
UPSTREAM_VERSION: v0.2.8
|
|
context: ./polygon/heimdall
|
|
dockerfile: Dockerfile
|
|
volumes:
|
|
- "heimdall_data:/root/.heimdalld"
|
|
ports:
|
|
- "26656:26656"
|
|
- "26656:26656/udp"
|
|
- "127.0.0.1:26657:26657"
|
|
depends_on:
|
|
- rabbitmq
|
|
environment:
|
|
- MONIKER=StakeSquid
|
|
- SNAPSHOT_URL=https://matic-blockchain-snapshots.s3-accelerate.amazonaws.com/matic-mainnet/heimdall-snapshot-2022-11-30.tar.gz
|
|
- BOOTSTRAP=1
|
|
- "ETH1_RPC_URL=https://cloudflare-eth.com"
|
|
restart: unless-stopped
|
|
networks:
|
|
- chains
|
|
|
|
heimdallr:
|
|
environment:
|
|
- REST_SERVER=1
|
|
- "ETH1_RPC_URL=https://cloudflare-eth.com"
|
|
build: *ref_0
|
|
volumes:
|
|
- "heimdall_data:/root/.heimdalld"
|
|
expose:
|
|
- "1317"
|
|
depends_on:
|
|
- heimdalld
|
|
restart: unless-stopped
|
|
networks:
|
|
- chains
|
|
|
|
volumes:
|
|
heimdall_data:
|