Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

^feat: change to chain-id: private to be able to start light node with it #43

Open
wants to merge 4 commits into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .github/workflows/docker-build-publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,6 @@ jobs:
permissions:
contents: write
packages: write
uses: celestiaorg/.github/.github/workflows/reusable_dockerfile_pipeline.yml@v0.1.1 # yamllint disable-line rule:line-length
uses: celestiaorg/.github/.github/workflows/reusable_dockerfile_pipeline.yml@v0.2.0 # yamllint disable-line rule:line-length
with:
dockerfile: Dockerfile
dockerfile: Dockerfile
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:0.13.3 AS celestia-app
FROM ghcr.io/celestiaorg/celestia-app:0.13.2 AS celestia-app

FROM ghcr.io/celestiaorg/celestia-node:v0.10.4
FROM ghcr.io/celestiaorg/celestia-node:v0.9.5

USER root

Expand Down
4 changes: 2 additions & 2 deletions entrypoint.sh
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#!/usr/bin/env bash

CHAINID="test"
CHAINID="private"

rm -rf /root/.celestia-app

Expand Down Expand Up @@ -43,7 +43,7 @@ while [ "${#GENESIS}" -le 4 -a $CNT -ne $MAX ]; do
sleep 1
done

export CELESTIA_CUSTOM=test:$GENESIS
export CELESTIA_CUSTOM=private:$GENESIS
echo $CELESTIA_CUSTOM

celestia bridge init --node.store /bridge
Expand Down