From 0198b3067d26c5e9d60621bc5b1da963f4a7eaf0 Mon Sep 17 00:00:00 2001 From: WisdomPill Date: Sun, 27 Oct 2024 10:19:52 +0200 Subject: [PATCH] Fixed docker-compose up command in ci --- .github/workflows/ci.yml | 2 +- tests/README.rst | 3 +-- 2 files changed, 2 insertions(+), 3 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index bda2749b..5e30260e 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -81,7 +81,7 @@ jobs: python -m pip install --upgrade tox tox-gh-actions - name: Docker compose up - run: docker compose up -d --wait + run: docker compose -f docker/docker-compose.yml up -d --wait - name: Tox tests run: tox diff --git a/tests/README.rst b/tests/README.rst index ff1edb64..f9426a49 100644 --- a/tests/README.rst +++ b/tests/README.rst @@ -4,5 +4,4 @@ Running the test suite .. code-block:: bash # start redis and a sentinel (uses docker with image redis:latest) -cd docker -docker-compose up \ No newline at end of file +docker compose -f docker/docker-compose.yml up -d --wait \ No newline at end of file