From b782631709254ea39fe20020899ee0771f7ef4e0 Mon Sep 17 00:00:00 2001 From: rl1987 Date: Thu, 12 Dec 2024 17:21:16 +0400 Subject: [PATCH] Update Docker Compose commands in page documenting Docker Compose deployment (#644) --- docs/deployment/docker.mdx | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/docs/deployment/docker.mdx b/docs/deployment/docker.mdx index 5f659e2e..288afa3f 100644 --- a/docs/deployment/docker.mdx +++ b/docs/deployment/docker.mdx @@ -38,7 +38,7 @@ import CloudVersion from "/snippets/cloud-version.mdx"; 4. Start the application: ```bash - docker-compose up -d + docker compose up -d ``` 5. Access OpnForm at http://localhost @@ -98,8 +98,8 @@ services: ### Clearing all resources -To completely remove all Docker containers, networks, and volumes created by docker-compose and also remove all images used by these services, you can use the following command: +To completely remove all Docker containers, networks, and volumes created by Docker Compose and also remove all images used by these services, you can use the following command: ``` -docker-compose down -v --rmi all +docker compose down -v --rmi all ```