From ca2eafb08a2e41d0e6018cb0840354fa6c1827e2 Mon Sep 17 00:00:00 2001 From: Nicolas Favre-Felix Date: Mon, 19 Aug 2024 16:31:13 -0700 Subject: [PATCH] Use correct command for docker compose `docker-compose` (V1) has been deprecated since July 2023, and Compose V2 is its replacement. Since V2 was announced, it was always available as `docker compose` rather than the single command `docker-compose`. Modern installations of Docker no longer even ship with `docker-compose` itself. --- README.md | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 5cf4972..ef484c7 100644 --- a/README.md +++ b/README.md @@ -16,13 +16,14 @@ It pretends to be GoogleBot (Google's web crawler) and gets the same content tha Requirements: - docker -- docker-compose +- Docker Compose (available as `docker compose`) + First, clone the repo to your machine then run the following commands: ```sh git clone https://github.com/wasi-master/13ft.git cd 13ft -docker-compose up +docker compose up ``` The image is also available from [DockerHub](https://hub.docker.com/r/wasimaster/13ft "docker pull wasimaster/13ft") or [ghcr.io](https://github.com/wasi-master/13ft/pkgs/container/13ft "docker pull ghcr.io/wasi-master/13ft:0.2.3") so the command `docker pull wasimaster/13ft` also works.