From cb1327a718cba6819d42cc110d6a93f5be126ab8 Mon Sep 17 00:00:00 2001 From: markus Date: Tue, 26 Aug 2025 12:18:03 +0000 Subject: [PATCH] docker compose --- DOCKER.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/DOCKER.md b/DOCKER.md index a2ec8a4..3ad7b9f 100644 --- a/DOCKER.md +++ b/DOCKER.md @@ -14,13 +14,13 @@ This directory contains Docker configuration files for containerizing the Markov ```bash # Build and start the application -docker-compose up --build +docker compose up --build # Run in detached mode -docker-compose up -d --build +docker compose up -d --build # Stop the application -docker-compose down +docker compose down ``` ### Using Docker directly