in deploy.yml: docker-compose -> docker compose

This commit is contained in:
Jan 2025-11-20 18:16:40 +01:00
parent 758fa8c4e8
commit adbdb091d7

View file

@ -32,6 +32,6 @@ jobs:
ssh -i ~/.ssh/deploy_key ${{ secrets.DEPLOY_USER }}@${{ secrets.DEPLOY_HOST }} << EOF
cd ${DEPLOY_PATH}
docker-compose pull lcc-app-${BRANCH}
docker-compose --profile ${BRANCH} up -d lcc-app-${BRANCH}
docker compose pull lcc-app-${BRANCH}
docker compose --profile ${BRANCH} up -d lcc-app-${BRANCH}
EOF