fix: Update docker compose command in deploy script
Some checks failed
Update Memento Dev on VPS / deploy (push) Failing after 3m59s

This commit is contained in:
Gauthier Daniels 2025-04-17 21:09:03 +02:00
parent c4a99e0972
commit 27ba0f74a1

View File

@ -51,5 +51,5 @@ jobs:
VPS_PATH: ${{ secrets.VPS_PATH }}
VPS_PORT: ${{ secrets.VPS_PORT }}
run: |
ssh -i ~/.ssh/id_ed25519 -p $VPS_PORT $VPS_USER@$VPS_HOST "cd $VPS_PATH && docker compose up -d"
ssh -i ~/.ssh/id_ed25519 -p $VPS_PORT $VPS_USER@$VPS_HOST "cd $VPS_PATH && docker compose -f compose-prod.yml up -d"
echo "🚀 The application has been started on the VPS."