diff --git a/README.md b/README.md index 598b9cc..404d427 100644 --- a/README.md +++ b/README.md @@ -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. @@ -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 @@ -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 diff --git a/docker/dockerfiles/Dockerfile.bedrock-init b/docker/dockerfiles/Dockerfile.bedrock-init index 38a4be0..d2f4cfa 100644 --- a/docker/dockerfiles/Dockerfile.bedrock-init +++ b/docker/dockerfiles/Dockerfile.bedrock-init @@ -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