fix(services): default celld image tag to latest

Use ${CELLD_VERSION:-latest} in the celld compose template
and regenerate service templates; update unit tests.
This commit is contained in:
Andras Bacsai
2026-08-07 18:17:33 +02:00
parent da43086a32
commit a4f7cb723a
4 changed files with 7 additions and 7 deletions
+2 -2
View File
@@ -4,7 +4,7 @@ it('includes a celld one-click service template', function () {
$compose = file_get_contents(__DIR__.'/../../templates/compose/celld.yaml');
expect($compose)
->toContain('ghcr.io/denoland/celld:${CELLD_VERSION:-v0.1.0}')
->toContain('ghcr.io/denoland/celld:${CELLD_VERSION:-latest}')
->toContain('SERVICE_URL_CELLD_8080')
->toContain('CELLD_BUCKET=${CELLD_BUCKET:?}')
->toContain('S3_ENDPOINT=${S3_ENDPOINT:-}')
@@ -27,7 +27,7 @@ it('includes a celld one-click service template', function () {
$generatedCompose = base64_decode($templates['celld']['compose'], strict: true);
expect($generatedCompose)
->toContain('ghcr.io/denoland/celld:${CELLD_VERSION:-v0.1.0}')
->toContain('ghcr.io/denoland/celld:${CELLD_VERSION:-latest}')
->toContain('CELLD_BUCKET=${CELLD_BUCKET:?}');
}
});