mirror of
https://github.com/farcasterxyz/hub-monorepo.git
synced 2026-02-11 21:45:09 -05:00
* feat: Add ENS username proof support * Add UserNameProof store * ENS name ownership validations * Add remaining ens validations * Generate events correctly * Allow setting ens names on UserData and handle revoking it * Add changeset and cli flag
14 lines
514 B
YAML
14 lines
514 B
YAML
version: '3.9'
|
|
|
|
services:
|
|
hubble:
|
|
image: farcasterxyz/hubble:latest
|
|
restart: unless-stopped
|
|
command: ["yarn", "start", "--ip", "0.0.0.0", "--gossip-port", "2282", "--rpc-port", "2283", "--eth-rpc-url", "$ETH_RPC_URL", "--eth-mainnet-rpc-url", "$ETH_MAINNET_RPC_URL", "--network", "$FC_NETWORK_ID", "-b", "$BOOTSTRAP_NODE"]
|
|
ports:
|
|
- '2282:2282' # Gossip
|
|
- '2283:2283' # RPC
|
|
volumes:
|
|
- ./.hub:/home/node/app/apps/hubble/.hub
|
|
- ./.rocks:/home/node/app/apps/hubble/.rocks
|