Skip to content

Commit

Permalink
Merge pull request #94 from rollkit/tux/celestia-node-v0.13.1
Browse files Browse the repository at this point in the history
feat(deps): switch to latest celestia node
  • Loading branch information
gupadhyaya authored Mar 20, 2024
2 parents 6220c10 + 2ce1da1 commit a7aa7c3
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 11 deletions.
4 changes: 2 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
FROM ghcr.io/celestiaorg/celestia-app:v1.7.0 AS celestia-app

FROM ghcr.io/rollkit/celestia-da:v0.12.9
FROM ghcr.io/celestiaorg/celestia-node:v0.13.1

USER root

Expand All @@ -18,6 +18,6 @@ COPY --from=celestia-app /bin/celestia-appd /bin/

COPY entrypoint.sh /opt/entrypoint.sh

EXPOSE 26650 26657 26658 26659 9090
EXPOSE 26657 26658 26659 9090

ENTRYPOINT [ "/bin/bash", "/opt/entrypoint.sh" ]
11 changes: 2 additions & 9 deletions entrypoint.sh
Original file line number Diff line number Diff line change
Expand Up @@ -73,17 +73,10 @@ done
export CELESTIA_CUSTOM=test:$GENESIS
echo "$CELESTIA_CUSTOM"

if [ -z "$CELESTIA_NAMESPACE" ]; then
CELESTIA_NAMESPACE=0000$(openssl rand -hex 8)
fi
echo CELESTIA_NAMESPACE="$CELESTIA_NAMESPACE"

celestia-da bridge init --node.store /home/celestia/bridge
celestia-da bridge start \
celestia bridge init --node.store /home/celestia/bridge
celestia bridge start \
--node.store $NODE_PATH --gateway \
--core.ip 127.0.0.1 \
--keyring.accname validator \
--gateway.addr 0.0.0.0 \
--rpc.addr 0.0.0.0 \
--da.grpc.namespace "$CELESTIA_NAMESPACE" \
--da.grpc.listen "0.0.0.0:26650"

0 comments on commit a7aa7c3

Please sign in to comment.