Skip to content

Commit 8557e31

Browse files
committed
fix: Use 'docker compose' instead of 'docker-compose' in deployment
- VPS has modern Docker Compose (v2) which uses 'docker compose' - Old 'docker-compose' command was failing silently - This caused automated deployments to skip container restart
1 parent 4535e0d commit 8557e31

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/workflows/deploy.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@ jobs:
6767
script: |
6868
cd ~/app
6969
docker pull ghcr.io/getlumos/docs-lumos:latest
70-
docker-compose down || true
71-
docker-compose up -d
70+
docker compose down || true
71+
docker compose up -d
7272
docker image prune -f
7373
echo "Deployment completed successfully!"

0 commit comments

Comments
 (0)