Browse Source

Fix docker-compose.yml invalid empty environment mapping

Move environment block to comments since all values were commented out.
An empty environment: key with only comments is invalid YAML.

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
tuanchris 2 tuần trước cách đây
mục cha
commit
3f3723a4e1
1 tập tin đã thay đổi với 4 bổ sung4 xóa
  1. 4 4
      docker-compose.yml

+ 4 - 4
docker-compose.yml

@@ -23,10 +23,10 @@ services:
     restart: always
     ports:
       - "8080:8080"
-    environment:
-      # Testing overrides (uncomment to enable):
-      # FORCE_UPDATE_AVAILABLE: "1"        # Always show update available
-      # FAKE_LATEST_VERSION: "99.0.0"      # Fake a newer version
+    # Environment variables for testing (uncomment to enable):
+    # environment:
+    #   FORCE_UPDATE_AVAILABLE: "1"        # Always show update available
+    #   FAKE_LATEST_VERSION: "99.0.0"      # Fake a newer version
     volumes:
       # Mount entire app directory for persistence
       - .:/app