Fix JSON structure in entrypoint.sh by adding missing comma for local_environments
All checks were successful
Building and publishing Homebrewery as Docker Image / build (release) Successful in 11m31s

This commit is contained in:
Florian Weber 2025-06-26 10:18:14 +02:00
parent 0a6765e3dd
commit 48007addc0
Signed by: f.weber
GPG Key ID: A1C85EB19014A2D3

View File

@ -20,7 +20,7 @@ if [ ! -f "$CONFIG_FILE" ]; then
"enable_v3": ${HB_ENABLE_V3:-true},
"enable_themes": ${HB_ENABLE_THEMES:-true},
"publicUrl": "${HB_PUBLIC_URL}",
"local_environments": ["${HB_LOCAL_ENVIRONMENT:-"docker"}"]
"local_environments": ["${HB_LOCAL_ENVIRONMENT:-"docker"}"],
"mongodb_uri": "${HB_DB_URI}",
"hb_images": ${HB_IMAGES:-null},
"hb_fonts": ${HB_FONTS:-null}