• v4.3.7 aac81d6f29

    v4.3.7
    All checks were successful
    Release / Test backend (push) Successful in 1m3s
    Release / Test UI (push) Successful in 1m50s
    Release / Build and push images (push) Successful in 7m32s
    Release / Deploy to homelab (push) Successful in 16s
    Release / Gitea Release (push) Successful in 27s
    Release / Deploy to prod (push) Successful in 2m21s
    Stable

    gitea-actions released this 2026-04-17 15:57:54 +05:00 | -559 commits to main since this release

    Issue: Two sequential 'docker compose up' commands caused race condition:

    • First command (--no-deps) starts removing containers
    • Second command (--remove-orphans) tries to remove same containers
    • Result: 'removal of container is already in progress' error

    Fix: Combine into single command with both flags:
    docker compose up -d --no-deps --remove-orphans

    This ensures atomic operation without race conditions.

    Downloads