From 5fe9376533e0e0da5d43516ffa86ac4211456217 Mon Sep 17 00:00:00 2001 From: Arif Hasanic Date: Thu, 28 Aug 2025 15:55:12 +0200 Subject: [PATCH] use docker compose instead of docker in ci.yml --- .github/workflows/ci.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index d63df7a..608baef 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -57,7 +57,7 @@ jobs: key: ${{ secrets.SSH_PRIVATE_KEY }} script: | cd monitor-im-flur - docker pull git.rivercry.com/wg/monitor-im-flur:latest - docker stop monitor-im-flur || true - docker rm monitor-im-flur || true - docker run -d --name monitor-im-flur git.rivercry.com/wg/monitor-im-flur:latest \ No newline at end of file + docker-compose pull + docker-compose stop || true + docker-compose rm || true + docker-compose up -d \ No newline at end of file