use docker compose instead of docker in ci.yml
Some checks failed
CI / lint (push) Successful in 9s
CI / build (push) Successful in 10s
CI / build-and-push-docker (push) Failing after 13s

This commit is contained in:
2025-08-28 15:55:12 +02:00
parent f694284c29
commit 5fe9376533

View File

@@ -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
docker-compose pull
docker-compose stop || true
docker-compose rm || true
docker-compose up -d