Skip to content

Commit

Permalink
Use correct command for docker compose
Browse files Browse the repository at this point in the history
`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.
  • Loading branch information
nicolasff committed Aug 19, 2024
1 parent c509407 commit ca2eafb
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down

0 comments on commit ca2eafb

Please sign in to comment.