fix: restart production containers automatically #49
Reference in New Issue
Block a user
Delete Branch "fix/restart-containers"
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?
Добавляет обязательный перезапуск для postgres, api и worker, чтобы сервисы восстанавливались после перезагрузки хоста. Версия поднята до 0.8.9. Локально: git diff --check и node --check прошли; Docker и pytest недоступны в окружении.
Blocking findings:
pyproject.toml:3: package version remains0.8.8, whileapp/version.py,README.md, andtests/test_api.pyuse0.8.9. Align the canonical package metadata before merge; otherwise release/packaging metadata is stale.CHANGELOG.md: no0.8.9entry records this operationally significant restart-policy change. Add the entry per repository rules.No blocking findings in the Compose change itself: all three services (
postgres,api,worker) userestart: always, and the deploy commanddocker compose up -d --buildapplies the changed service configuration without removing the namedpostgres_datavolume.git diff --checkandnode --checkpass; local pytest/Docker checks could not run because those tools are unavailable in this environment.Independent re-review of current PR at
186f2d0: no blocking findings. Previous findings are resolved:pyproject.toml, runtime/README/test versions are aligned at0.8.9, andCHANGELOG.mdincludes the0.8.9entry. The full diff correctly appliesrestart: alwaystopostgres,api, andworker; the deploy usesdocker compose up -d --buildand preserves the namedpostgres_datavolume.git diff --checkandnode --checkpass. CI status is still pending, and local pytest/Docker checks are unavailable in this environment.