Stop reporting the scheduler container as unhealthy

The scheduler inherited the image's healthcheck, which asks the web server
that only the app container runs.

Co-Authored-By: Claude Opus 5 (1M context) <noreply@anthropic.com>
This commit is contained in:
surtic86
2026-09-18 22:17:35 +02:00
co-authored by Claude Opus 5
parent 0e362447db
commit 9bb144577b
3 changed files with 7 additions and 0 deletions
+1
View File
@@ -15,6 +15,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
- Docker installs updated from 2.0 answered every upload with "409 Conflict". The example `docker-compose.yml` mounted the SQLite volume over all of `/app/database`, which hid the image's new migration, so it never ran. The container now adds the migrations the volume is missing before migrating, so existing compose files keep working.
- A share with several files and a download limit was deleted as soon as one file was downloaded: every single file counted as a whole download. Now one recipient's visit counts once, and they have 1 hour to download all the files and the ZIP. Two recipients who start at the same moment can no longer both get the last download.
- The scheduler container no longer shows as "unhealthy": it inherited the image's healthcheck, which asks the web server that only the app container runs. To fix an existing install, add `healthcheck: { disable: true }` to the scheduler service in your `docker-compose.yml`.
### Changed
+3
View File
@@ -83,6 +83,9 @@ services:
image: gitea.nonameweb.ch/nonameweb/sealshare:latest
restart: unless-stopped
entrypoint: ["php", "artisan", "schedule:work"]
# The image's healthcheck asks the web server, which only the app service runs
healthcheck:
disable: true
volumes:
- sealshare_storage:/app/storage/app
- sealshare_database:/app/database/sqlite
+3
View File
@@ -54,6 +54,9 @@ services:
dockerfile: Dockerfile
restart: unless-stopped
entrypoint: ["php", "artisan", "schedule:work"]
# The image's healthcheck asks the web server, which only the app service runs
healthcheck:
disable: true
volumes:
- sealshare_storage:/app/storage/app
- sealshare_database:/app/database/sqlite