From 8116279300253346c99b11a0161f007379b42473 Mon Sep 17 00:00:00 2001 From: Kennedy242 <80504103+Kennedy242@users.noreply.github.com> Date: Wed, 22 Jan 2025 08:27:33 -0700 Subject: [PATCH] Update docker compose command (#613) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 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 --- docs/install/docker.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/install/docker.md b/docs/install/docker.md index 29adbbd4c..6f1af1555 100644 --- a/docs/install/docker.md +++ b/docs/install/docker.md @@ -34,7 +34,7 @@ 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. @@ -42,7 +42,7 @@ You can optionally configure the container using environment variables — see t ### Update Docker Compose container ```bash -$ docker-compose pull && docker-compose up -d +$ docker compose pull && docker compose up -d ``` ## Launch container using docker command