From 8736e18a6356955e4126184b92dbe1d8ac2f6824 Mon Sep 17 00:00:00 2001 From: Smuu <18609909+Smuu@users.noreply.github.com> Date: Sat, 10 Jun 2023 11:05:11 +0200 Subject: [PATCH 1/4] feat: change to chain-id: private to be able to start light node with it Signed-off-by: Smuu <18609909+Smuu@users.noreply.github.com> --- entrypoint.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/entrypoint.sh b/entrypoint.sh index f616caa..e227bf5 100644 --- a/entrypoint.sh +++ b/entrypoint.sh @@ -1,6 +1,6 @@ #!/usr/bin/env bash -CHAINID="test" +CHAINID="private" rm -rf /root/.celestia-app From ad7c8a830214e512ee27cdffe2d1114919572540 Mon Sep 17 00:00:00 2001 From: Smuu <18609909+Smuu@users.noreply.github.com> Date: Sat, 10 Jun 2023 11:35:43 +0200 Subject: [PATCH 2/4] feat: need new release of workflow Signed-off-by: Smuu <18609909+Smuu@users.noreply.github.com> --- .github/workflows/docker-build-publish.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/docker-build-publish.yml b/.github/workflows/docker-build-publish.yml index cd0e5c6..0ddebbd 100644 --- a/.github/workflows/docker-build-publish.yml +++ b/.github/workflows/docker-build-publish.yml @@ -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 \ No newline at end of file + dockerfile: Dockerfile From ecaf301beeabec9ef95abff26c92e12aa0d8859e Mon Sep 17 00:00:00 2001 From: Smuu <18609909+Smuu@users.noreply.github.com> Date: Sat, 10 Jun 2023 11:40:48 +0200 Subject: [PATCH 3/4] fix: chain-id of bridge Signed-off-by: Smuu <18609909+Smuu@users.noreply.github.com> --- entrypoint.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/entrypoint.sh b/entrypoint.sh index e227bf5..2d91041 100644 --- a/entrypoint.sh +++ b/entrypoint.sh @@ -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 From 3a3ac8fd8a312b9519f5797979974bb43cd2a566 Mon Sep 17 00:00:00 2001 From: Smuu <18609909+Smuu@users.noreply.github.com> Date: Sat, 10 Jun 2023 12:14:27 +0200 Subject: [PATCH 4/4] feat: use older version Signed-off-by: Smuu <18609909+Smuu@users.noreply.github.com> --- Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index 4a5f6c6..ac52231 100644 --- a/Dockerfile +++ b/Dockerfile @@ -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