From 595b2da433e28a3ae5cb5f4a7f5d3414c45aff0d Mon Sep 17 00:00:00 2001 From: GitHub Actions Date: Sat, 1 Oct 2022 02:46:41 +0000 Subject: [PATCH 1/3] Update nightly --- .github/nightly-version | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/nightly-version b/.github/nightly-version index 6b066be9..3b012ca6 100644 --- a/.github/nightly-version +++ b/.github/nightly-version @@ -1 +1 @@ -nightly-2022-09-01 +nightly-2022-10-01 From 7ecf8b22cfe0bbded3f71a67b14ebf7daea1cbb7 Mon Sep 17 00:00:00 2001 From: Luke Parker Date: Sun, 23 Oct 2022 20:39:27 -0400 Subject: [PATCH 2/3] Mark all sh files as executable --- deploy/coins/bitcoin/scripts/entry-dev.sh | 0 deploy/coins/ethereum/scripts/entry-dev.sh | 0 deploy/coins/monero/scripts/entry-dev.sh | 0 deploy/serai/scripts/entry-dev.sh | 0 4 files changed, 0 insertions(+), 0 deletions(-) mode change 100644 => 100755 deploy/coins/bitcoin/scripts/entry-dev.sh mode change 100644 => 100755 deploy/coins/ethereum/scripts/entry-dev.sh mode change 100644 => 100755 deploy/coins/monero/scripts/entry-dev.sh mode change 100644 => 100755 deploy/serai/scripts/entry-dev.sh diff --git a/deploy/coins/bitcoin/scripts/entry-dev.sh b/deploy/coins/bitcoin/scripts/entry-dev.sh old mode 100644 new mode 100755 diff --git a/deploy/coins/ethereum/scripts/entry-dev.sh b/deploy/coins/ethereum/scripts/entry-dev.sh old mode 100644 new mode 100755 diff --git a/deploy/coins/monero/scripts/entry-dev.sh b/deploy/coins/monero/scripts/entry-dev.sh old mode 100644 new mode 100755 diff --git a/deploy/serai/scripts/entry-dev.sh b/deploy/serai/scripts/entry-dev.sh old mode 100644 new mode 100755 From 42a711ee5138b46a9a436c800cb442f034affc9b Mon Sep 17 00:00:00 2001 From: Luke Parker Date: Sun, 23 Oct 2022 21:01:11 -0400 Subject: [PATCH 3/3] Replace the Serai scripts volume for directly copying the files This should probably be done for the other images as well. --- deploy/docker-compose.yml | 2 -- deploy/serai/Dockerfile | 1 + 2 files changed, 1 insertion(+), 2 deletions(-) diff --git a/deploy/docker-compose.yml b/deploy/docker-compose.yml index ff371db3..78e96cae 100644 --- a/deploy/docker-compose.yml +++ b/deploy/docker-compose.yml @@ -38,8 +38,6 @@ services: args: TAG: serai entrypoint: /scripts/entry-dev.sh - volumes: - - "./serai/scripts:/scripts" serai-base: <<: *serai_defaults diff --git a/deploy/serai/Dockerfile b/deploy/serai/Dockerfile index 2e941724..87ea5998 100644 --- a/deploy/serai/Dockerfile +++ b/deploy/serai/Dockerfile @@ -36,6 +36,7 @@ WORKDIR /home/serai # Copy necessary files to run node COPY --from=builder /serai/target/release/* /bin/ COPY --from=builder /serai/AGPL-3.0 . +COPY deploy/serai/scripts /scripts # Run node EXPOSE 30333 9615 9933 9944