fix: Fix working directory so db directory will be under hubble app (#999)

* fix: Fix working directory so db directory will be under hubble app

* Fix build_image action
This commit is contained in:
Sanjay
2023-05-26 19:32:47 -07:00
committed by GitHub
parent 27181c6ced
commit 63927edd0d
2 changed files with 3 additions and 3 deletions

View File

@@ -36,7 +36,7 @@ jobs:
- name: Run Hubble
shell: bash
run: docker run --name hub --detach -p2282:2282 -p2283:2283 farcasterxyz/hubble:test sh -c 'node apps/hubble/build/cli.js identity create && node apps/hubble/build/cli.js start --rpc-port 2283 --ip 0.0.0.0 --gossip-port 2282 --eth-rpc-url "https://eth-goerli.g.alchemy.com/v2/IvjMoCKt1hT66f9OJoL_dMXypnvQYUdd" --network 3 --allowed-peers none'
run: docker run --name hub --detach -p2282:2282 -p2283:2283 farcasterxyz/hubble:test sh -c 'node build/cli.js identity create && node build/cli.js start --rpc-port 2283 --ip 0.0.0.0 --gossip-port 2282 --eth-rpc-url "https://eth-goerli.g.alchemy.com/v2/IvjMoCKt1hT66f9OJoL_dMXypnvQYUdd" --network 3 --allowed-peers none'
- name: Download grpcurl
shell: bash