fix: replace docker-compose v1 with docker compose v2 in e2e workflow #3
Reference in New Issue
Block a user
Delete Branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Problem
The e2e CI job fails immediately with:
Root cause: The workflow uses
docker-compose(v1, standalone binary) on lines 67 and 72 of.gitea/workflows/ci.yml. Modern Docker installations (Docker Engine 20.10+) ship Compose as a plugin (docker compose, with a space), and the v1 standalone binary is not installed on the act runner.Fix
Replace the two occurrences in
.gitea/workflows/ci.yml:No other changes needed —
docker composev2 is a drop-in replacement for all flags used here.marcel referenced this issue2026-04-25 17:00:44 +02:00