Skip to content

Commit

Permalink
Update docker compose command (#613)
Browse files Browse the repository at this point in the history
Update to newer docker compose command.

From the docs: From July 2023 Compose V1 stopped receiving updates. It’s
also no longer available in new releases of Docker Desktop.
See the docs: https://docs.docker.com/compose/releases/migrate
  • Loading branch information
Kennedy242 authored Jan 22, 2025
1 parent b020e84 commit 8116279
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions docs/install/docker.md
Original file line number Diff line number Diff line change
Expand Up @@ -34,15 +34,15 @@ You can use the [`docker-compose.yml` file included in the `actual-server` repos
To create and run the container:

```bash
$ docker-compose up --detach
$ docker compose up --detach
```

You can optionally configure the container using environment variables — see the [configuration section](../config/index.md) for more details.

### Update Docker Compose container

```bash
$ docker-compose pull && docker-compose up -d
$ docker compose pull && docker compose up -d
```

## Launch container using docker command
Expand Down

0 comments on commit 8116279

Please sign in to comment.