-
v4.3.7
StableAll checks were successfulRelease / Test backend (push) Successful in 1m3sRelease / Test UI (push) Successful in 1m50sRelease / Build and push images (push) Successful in 7m32sRelease / Deploy to homelab (push) Successful in 16sRelease / Gitea Release (push) Successful in 27sRelease / Deploy to prod (push) Successful in 2m21sreleased this
2026-04-17 15:57:54 +05:00 | -559 commits to main since this releaseIssue: 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-orphansThis ensures atomic operation without race conditions.
Downloads