You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
fix: ensure deterministic variable interpolation using sorted map keys
This fixes the non-deterministic behavior when multiple required
variables (e.g., ${TIMEZONE:?}, ${TRAEFIK_ACME_PATH:?}) are missing.
Go's map iteration order is randomized, causing different error messages
to be reported on each run.
Changes:
- Add replace directive to use fixed compose-go fork
- The compose-go fix adds sort.Strings(keys) before map iteration
to ensure consistent error reporting
Fixes: #13712
Signed-off-by: Md Yunus <[email protected]>
0 commit comments