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

Missing apt-get before install #40

Open
wants to merge 2 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
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ A simple docker compose script for launching full / archive node for the Ink cha

## Installation and Configuration

### Install docker and docker compose
### Install Docker and Docker Compose

> Note: If you're not logged in as root, you'll need to log out and log in again after installation to complete the docker installation.

Expand Down Expand Up @@ -61,7 +61,7 @@ sudo docker run hello-world
docker ps
```

It should returns an empty container list without having any error. Otherwise, restart your machine if there are errors.
It should return an empty container list without having any error. Otherwise, restart your machine if there are errors.

### Clone the Repository

Expand Down Expand Up @@ -113,7 +113,7 @@ Open `.env` with your editor of choice
docker compose up -d --build
```

Will start the node in a detached shell (`-d`), meaning the node will continue to run in the background. We recommended to add `--build` to make sure that latest changes are being applied.
Will start the node in a detached shell (`-d`), meaning the node will continue to run in the background. We recommend adding `--build` to make sure that the latest changes are being applied.

### View logs

Expand Down
2 changes: 1 addition & 1 deletion docker/dockerfiles/Dockerfile.bedrock-init
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ FROM ubuntu:22.04
ARG DEBIAN_FRONTEND=noninteractive

# Install required packages.
RUN apt-get update && apt install -y curl wget git rsync build-essential openssl python3 python3-pip aria2 zstd lz4
RUN apt-get update && apt-get install -y curl wget git rsync build-essential openssl python3 python3-pip aria2 zstd lz4

# Install Go.
RUN curl -sSL https://golang.org/dl/go1.21.6.linux-amd64.tar.gz | tar -v -C /usr/local -xz
Expand Down