From e3e30be58f66148f0fc769b32fe2cc13310cd853 Mon Sep 17 00:00:00 2001 From: Jagad Bumi <93110858+0xjagadbumi@users.noreply.github.com> Date: Thu, 23 Jan 2025 16:59:21 +0700 Subject: [PATCH 1/2] Missing apt-get before install The command should use apt-get install instead of just apt install --- docker/dockerfiles/Dockerfile.bedrock-init | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 From 5a9b18597cf9bf61ae23ef7d1ac955dede4750df Mon Sep 17 00:00:00 2001 From: Jagad Bumi <93110858+0xjagadbumi@users.noreply.github.com> Date: Fri, 24 Jan 2025 10:01:35 +0700 Subject: [PATCH 2/2] Fix Typos and Improve Consistency in Documentation Minor typos and grammatical errors in the documentation, ensuring consistent capitalization of "Docker" and improving clarity in recommendations. --- README.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) 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