Files
hub-monorepo/apps/hubble/docker-compose.yml
Sanjay cd0ddd6d24 feat: Support ENS names in the hub (#1101)
* 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
2023-07-10 23:40:50 -07:00

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