From 0d2dbca1c6bbb30cc35992b8be27d00694195909 Mon Sep 17 00:00:00 2001 From: Eric Butz <47221604+ericbutz@users.noreply.github.com> Date: Thu, 20 May 2021 11:32:50 -0600 Subject: [PATCH 1/4] Update readme --- README.md | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 5584035..c7c5b68 100644 --- a/README.md +++ b/README.md @@ -30,7 +30,12 @@ sudo apt-get install -y docker.io python3 python3-pip git sudo pip3 install docker-compose sudo usermod -a -G docker $(whoami) newgrp -git clone https://github.com/blockpane/fio-docker.git +``` + +Clone the fio-docker repository: + +``` +git clone https://github.com/fioprotocol/fio-docker.git ``` Start a node: From e0a17387d4a58c16db9efe908cc4960d89b35c4b Mon Sep 17 00:00:00 2001 From: Michael Leet Date: Fri, 18 Nov 2022 22:12:40 -0700 Subject: [PATCH 2/4] Reverted change to fio-docker link --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index c7c5b68..fc1d548 100644 --- a/README.md +++ b/README.md @@ -35,7 +35,7 @@ newgrp Clone the fio-docker repository: ``` -git clone https://github.com/fioprotocol/fio-docker.git +git clone https://github.com/blockpane/fio-docker.git ``` Start a node: From dda982cce376c7cc2945a6fef1e50d1dfbe082a4 Mon Sep 17 00:00:00 2001 From: Michael Leet Date: Fri, 18 Nov 2022 22:24:49 -0700 Subject: [PATCH 3/4] Updated docker files to point to S3 fioprotocol releases bucket, and to a single 'latest' package --- mainnet-v1history/nodeos/Dockerfile | 4 ++-- mainnet/nodeos/Dockerfile | 4 ++-- testnet-v1history/nodeos/Dockerfile | 4 ++-- testnet/nodeos/Dockerfile | 4 ++-- 4 files changed, 8 insertions(+), 8 deletions(-) diff --git a/mainnet-v1history/nodeos/Dockerfile b/mainnet-v1history/nodeos/Dockerfile index 59ee464..866d419 100644 --- a/mainnet-v1history/nodeos/Dockerfile +++ b/mainnet-v1history/nodeos/Dockerfile @@ -5,8 +5,8 @@ RUN go install github.com/blockpane/fio-docker/health@latest FROM ubuntu:18.04 RUN apt-get update; apt-get -y dist-upgrade; apt-get -y install aria2 jq pixz curl && \ - aria2c -x 5 "https://bin.fioprotocol.io/mainnet/fioprotocol-3.3.x-latest-ubuntu-18.04-amd64.deb" && \ - apt-get install -y ./fioprotocol-3.3.x-latest-ubuntu-18.04-amd64.deb && rm -f ./fioprotocol-3.3.x-latest-ubuntu-18.04-amd64.deb && \ + aria2c -x 5 "https://bin.fioprotocol.io/releases/fioprotocol-latest-ubuntu-18.04-amd64.deb" && \ + apt-get install -y ./fioprotocol-latest-ubuntu-18.04-amd64.deb && rm -f ./fioprotocol-latest-ubuntu-18.04-amd64.deb && \ rm -f /etc/fio/nodeos/config.ini && rm -rf /var/lib/apt/lists/* COPY fio-nodeos-run /usr/local/bin/fio-nodeos-run COPY --from=health /go/bin/health /usr/local/bin/fio-health diff --git a/mainnet/nodeos/Dockerfile b/mainnet/nodeos/Dockerfile index c80a021..b5714e0 100644 --- a/mainnet/nodeos/Dockerfile +++ b/mainnet/nodeos/Dockerfile @@ -5,8 +5,8 @@ RUN go install github.com/blockpane/fio-docker/health@latest FROM ubuntu:18.04 RUN apt-get update; apt-get -y dist-upgrade; apt-get -y install aria2 jq pixz curl && \ - aria2c -x 5 "https://bin.fioprotocol.io/mainnet/fioprotocol-3.3.x-latest-ubuntu-18.04-amd64.deb" && \ - apt-get install -y ./fioprotocol-3.3.x-latest-ubuntu-18.04-amd64.deb && rm -f ./fioprotocol-3.3.x-latest-ubuntu-18.04-amd64.deb && \ + aria2c -x 5 "https://bin.fioprotocol.io/releases/fioprotocol-latest-ubuntu-18.04-amd64.deb" && \ + apt-get install -y ./fioprotocol-latest-ubuntu-18.04-amd64.deb && rm -f ./fioprotocol-latest-ubuntu-18.04-amd64.deb && \ rm -f /etc/fio/nodeos/config.ini && rm -rf /var/lib/apt/lists/* COPY fio-nodeos-run /usr/local/bin/fio-nodeos-run COPY --from=health /go/bin/health /usr/local/bin/fio-health diff --git a/testnet-v1history/nodeos/Dockerfile b/testnet-v1history/nodeos/Dockerfile index 62fb8a6..bb488ae 100644 --- a/testnet-v1history/nodeos/Dockerfile +++ b/testnet-v1history/nodeos/Dockerfile @@ -5,8 +5,8 @@ RUN go install github.com/blockpane/fio-docker/health@latest FROM ubuntu:18.04 RUN apt-get update; apt-get -y dist-upgrade; apt-get -y install aria2 jq pixz curl && \ - aria2c -x 5 "https://bin.fioprotocol.io/mainnet/fioprotocol-3.3.x-latest-ubuntu-18.04-amd64.deb" && \ - apt-get install -y ./fioprotocol-3.3.x-latest-ubuntu-18.04-amd64.deb && rm -f ./fioprotocol-3.3.x-latest-ubuntu-18.04-amd64.deb && \ + aria2c -x 5 "https://bin.fioprotocol.io/releases/fioprotocol-latest-ubuntu-18.04-amd64.deb" && \ + apt-get install -y ./fioprotocol-latest-ubuntu-18.04-amd64.deb && rm -f ./fioprotocol-latest-ubuntu-18.04-amd64.deb && \ rm -f /etc/fio/nodeos/config.ini /etc/fio/nodeos/genesis.json && ln -s /etc/fio/nodeos/genesis-testnet.json /etc/fio/nodeos/genesis.json && \ rm -rf /var/lib/apt/lists/* COPY fio-nodeos-run /usr/local/bin/fio-nodeos-run diff --git a/testnet/nodeos/Dockerfile b/testnet/nodeos/Dockerfile index 62fb8a6..bb488ae 100644 --- a/testnet/nodeos/Dockerfile +++ b/testnet/nodeos/Dockerfile @@ -5,8 +5,8 @@ RUN go install github.com/blockpane/fio-docker/health@latest FROM ubuntu:18.04 RUN apt-get update; apt-get -y dist-upgrade; apt-get -y install aria2 jq pixz curl && \ - aria2c -x 5 "https://bin.fioprotocol.io/mainnet/fioprotocol-3.3.x-latest-ubuntu-18.04-amd64.deb" && \ - apt-get install -y ./fioprotocol-3.3.x-latest-ubuntu-18.04-amd64.deb && rm -f ./fioprotocol-3.3.x-latest-ubuntu-18.04-amd64.deb && \ + aria2c -x 5 "https://bin.fioprotocol.io/releases/fioprotocol-latest-ubuntu-18.04-amd64.deb" && \ + apt-get install -y ./fioprotocol-latest-ubuntu-18.04-amd64.deb && rm -f ./fioprotocol-latest-ubuntu-18.04-amd64.deb && \ rm -f /etc/fio/nodeos/config.ini /etc/fio/nodeos/genesis.json && ln -s /etc/fio/nodeos/genesis-testnet.json /etc/fio/nodeos/genesis.json && \ rm -rf /var/lib/apt/lists/* COPY fio-nodeos-run /usr/local/bin/fio-nodeos-run From b95a2c9084b23e5fe3f8316aaa1efc2d1e01ce02 Mon Sep 17 00:00:00 2001 From: Michael Leet Date: Fri, 18 Nov 2022 22:31:34 -0700 Subject: [PATCH 4/4] Updated docker files to point to S3 fioprotocol releases bucket, and to a single 'latest' package --- mainnet-v1history/nodeos/Dockerfile | 4 ++-- mainnet/nodeos/Dockerfile | 4 ++-- testnet-v1history/nodeos/Dockerfile | 2 +- testnet/nodeos/Dockerfile | 2 +- 4 files changed, 6 insertions(+), 6 deletions(-) diff --git a/mainnet-v1history/nodeos/Dockerfile b/mainnet-v1history/nodeos/Dockerfile index 3014313..e8284a7 100644 --- a/mainnet-v1history/nodeos/Dockerfile +++ b/mainnet-v1history/nodeos/Dockerfile @@ -6,8 +6,8 @@ RUN go install github.com/blockpane/restrict@latest FROM ubuntu:18.04 RUN apt-get update; apt-get -y dist-upgrade; apt-get -y install aria2 jq pixz curl && \ - aria2c -x 5 "https://bin.fioprotocol.io/mainnet/fioprotocol-3.3.x-latest-ubuntu-18.04-amd64.deb" && \ - apt-get install -y ./fioprotocol-3.3.x-latest-ubuntu-18.04-amd64.deb && rm -f ./fioprotocol-3.3.x-latest-ubuntu-18.04-amd64.deb && \ + aria2c -x 5 "https://bin.fioprotocol.io/releases/fioprotocol-latest-ubuntu-18.04-amd64.deb" && \ + apt-get install -y ./fioprotocol-latest-ubuntu-18.04-amd64.deb && rm -f ./fioprotocol-latest-ubuntu-18.04-amd64.deb && \ rm -f /etc/fio/nodeos/config.ini && rm -rf /var/lib/apt/lists/* COPY config.ini /etc/fio/nodeos/config.ini COPY fio-nodeos-run /usr/local/bin/fio-nodeos-run diff --git a/mainnet/nodeos/Dockerfile b/mainnet/nodeos/Dockerfile index d594f30..326a20d 100644 --- a/mainnet/nodeos/Dockerfile +++ b/mainnet/nodeos/Dockerfile @@ -6,8 +6,8 @@ RUN go install github.com/blockpane/restrict@latest FROM ubuntu:18.04 RUN apt-get update; apt-get -y dist-upgrade; apt-get -y install aria2 jq pixz curl && \ - aria2c -x 5 "https://bin.fioprotocol.io/mainnet/fioprotocol-3.3.x-latest-ubuntu-18.04-amd64.deb" && \ - apt-get install -y ./fioprotocol-3.3.x-latest-ubuntu-18.04-amd64.deb && rm -f ./fioprotocol-3.3.x-latest-ubuntu-18.04-amd64.deb && \ + aria2c -x 5 "https://bin.fioprotocol.io/releases/fioprotocol-latest-ubuntu-18.04-amd64.deb" && \ + apt-get install -y ./fioprotocol-latest-ubuntu-18.04-amd64.deb && rm -f ./fioprotocol-latest-ubuntu-18.04-amd64.deb && \ rm -f /etc/fio/nodeos/config.ini && rm -rf /var/lib/apt/lists/* COPY config.ini /etc/fio/nodeos/config.ini COPY fio-nodeos-run /usr/local/bin/fio-nodeos-run diff --git a/testnet-v1history/nodeos/Dockerfile b/testnet-v1history/nodeos/Dockerfile index 1d55925..0fa8adf 100644 --- a/testnet-v1history/nodeos/Dockerfile +++ b/testnet-v1history/nodeos/Dockerfile @@ -6,7 +6,7 @@ RUN go install github.com/blockpane/restrict@latest FROM ubuntu:18.04 RUN apt-get update; apt-get -y dist-upgrade; apt-get -y install aria2 jq pixz curl && \ - aria2c -x 5 "https://bin.fioprotocol.io/mainnet/fioprotocol-3.4.x-latest-ubuntu-18.04-amd64.deb" && \ + aria2c -x 5 "https://bin.fioprotocol.io/releases/fioprotocol-latest-ubuntu-18.04-amd64.deb" && \ apt-get install -y ./fioprotocol-*.deb && rm -f ./fioprotocol-*.deb && \ rm -f /etc/fio/nodeos/config.ini /etc/fio/nodeos/genesis.json && ln -s /etc/fio/nodeos/genesis-testnet.json /etc/fio/nodeos/genesis.json && \ rm -rf /var/lib/apt/lists/* diff --git a/testnet/nodeos/Dockerfile b/testnet/nodeos/Dockerfile index a304f96..367ec10 100644 --- a/testnet/nodeos/Dockerfile +++ b/testnet/nodeos/Dockerfile @@ -6,7 +6,7 @@ RUN go install github.com/blockpane/restrict@latest FROM ubuntu:18.04 RUN apt-get update; apt-get -y dist-upgrade; apt-get -y install aria2 jq pixz curl && \ - aria2c -x 5 "https://bin.fioprotocol.io/mainnet/fioprotocol-3.4.x-latest-ubuntu-18.04-amd64.deb" && \ + aria2c -x 5 "https://bin.fioprotocol.io/releases/fioprotocol-latest-ubuntu-18.04-amd64.deb" && \ apt-get install -y ./fioprotocol-*.deb && rm -f ./fioprotocol-*.deb && \ rm -f /etc/fio/nodeos/config.ini /etc/fio/nodeos/genesis.json && ln -s /etc/fio/nodeos/genesis-testnet.json /etc/fio/nodeos/genesis.json && \ rm -rf /var/lib/apt/lists/*