From 16403bb8db547be51e00f0e617f61afbaebcd9f1 Mon Sep 17 00:00:00 2001 From: MrPandir Date: Mon, 14 Oct 2024 21:29:52 +0200 Subject: [PATCH] chore: fix incomplete docker run commands --- README.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index bf94764..93d5cc8 100644 --- a/README.md +++ b/README.md @@ -38,13 +38,13 @@ dudes logs -f To run the project in dev mode in docker compose run: ```shell -docker compose -f compose.dev.app.yaml run -d +docker compose -f compose.dev.app.yaml up -d ``` ## Run the database in docker ```shell -docker compose -f compose.dev.yaml up -d +docker compose -f compose.dev.yaml run -d postgres ``` > [!WARNING] @@ -52,7 +52,7 @@ docker compose -f compose.dev.yaml up -d To change the PostgreSQL port, use the following command structure: ```shell -docker compose -f compose.dev.yaml run -d -p :5432 +docker compose -f compose.dev.yaml run -d -p :5432 postgres ``` # Run locally