Problem: Commitc2c188f(docker ports removed) accidentally reverted the dollar sign escape fix from commitdd063d5. Evidence: - git show dd063d5:docker-compose.dev.yml shows: $${{project.SHARED_PROJECT_ID}} ✅ - Current docker-compose.dev.yml has: ${{project.SHARED_PROJECT_ID}} ❌ - Dokploy error log shows: 'You may need to escape any $ with another $' - staging.yml and prod.yml still have correct $$ (lines 16-17) Root Cause: Manual edit inc2c188fmodified docker-compose files and accidentally removed one dollar sign during the 'docker ports removed' change. Solution: Re-applied dollar sign escape: $ → $$ on lines 14-15 Verification: - grep "SHARED_PROJECT_ID" docker-compose.*.yml shows all have $${{ - docker-compose.dev.yml now matches staging.yml and prod.yml This will fix the Dokploy deployment error.
1.1 KiB
1.1 KiB