mirror of
https://github.com/Dokploy/templates.git
synced 2026-05-06 10:37:26 -05:00
[PR #718] [CLOSED] fix: make linkstack timezone configurable via env instead of hardcoded #2040
Reference in New Issue
Block a user
Delete Branch "%!s()"
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?
📋 Pull Request Information
Original PR: https://github.com/Dokploy/templates/pull/718
Author: @madhuragrawal
Created: 2/21/2026
Status: ❌ Closed
Base:
canary← Head:linkstack-fix-timezone-env📝 Commits (4)
49ddd31fix: make linkstack timezone configurable via env instead of hardcoded0c39002fix: linkstack volume mount schema38208e2fix: remove linkstack invalid volume mounts from template.tomld5182f2fix: linkstack volume mount schema📊 Changes
2 files changed (+4 additions, -11 deletions)
View changed files
📝
blueprints/linkstack/docker-compose.yml(+1 -1)📝
blueprints/linkstack/template.toml(+3 -10)📄 Description
What is this PR about?
New PR of linkstack
Previously timezone was effectively hardcoded via template default.
This change exposes timezone as a configurable variable while preserving UTC as the default value.
Checklist
Before submitting this PR, please make sure that:
No automated tests exist for templates; change verified via manual deployment.
Greptile Summary
Changed timezone from hardcoded
Europe/BerlintoUTCwith environment variable placeholder indocker-compose.yml. However, the timezone is not actually configurable because theTZvariable is missing from the[variables]section intemplate.toml.Critical issue:
TZvariable needs to be defined in[variables]section and referenced as"${TZ}"in[config.env]to allow user configurationblueprints/freshrss/template.toml:3for correct implementation patternConfidence Score: 2/5
${TZ:-UTC}correctly, but template.toml lacks the required variable definition in[variables]section and hardcodes "UTC" in[config.env], preventing user configuration.Last reviewed commit:
49ddd31(2/5) Greptile learns from your feedback when you react with thumbs up/down!
🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.