Skip to content
This repository was archived by the owner on Jan 2, 2025. It is now read-only.
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
5 changes: 5 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,11 @@ sudo apt-get install -y docker.io python3 python3-pip git
sudo pip3 install docker-compose
sudo usermod -a -G docker $(whoami)
newgrp
```

Clone the fio-docker repository:

```
git clone https://github.com/blockpane/fio-docker.git
```

Expand Down
4 changes: 2 additions & 2 deletions mainnet-v1history/nodeos/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
4 changes: 2 additions & 2 deletions mainnet/nodeos/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion testnet-v1history/nodeos/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -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/*
Expand Down
2 changes: 1 addition & 1 deletion testnet/nodeos/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -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/*
Expand Down