chore: remove deprecated microservices, update solution and docker compose configurations

This commit is contained in:
2026-08-24 21:37:57 +02:00
parent 0894c40f07
commit 2b7d59f40d
96 changed files with 455 additions and 13121 deletions
+15 -3
View File
@@ -1,9 +1,20 @@
# rebuild-playwright-base.ps1
# ─────────────────────────────────────────────────────────────────────────────
# Rebuild the Playwright base image for FinlyticNews.
# Build the shared Playwright base image (Chromium + Node + Playwright CLI).
#
# Run this script ONLY when you update the Playwright NuGet package version.
# After running this, a normal `docker compose build` will be fast again.
# CONSUMERS — both reference this image as `FROM finlytic-playwright-base:<ver>`:
# * FinlyticNews/Dockerfile
# * FinlyticFundamentals/Dockerfile
#
# This image is NOT built by `docker compose build` (Compose does not resolve
# FROM-references between services). It must exist locally BEFORE building
# those two services, otherwise their build fails with "pull access denied".
#
# Equivalent Compose route (same image tag, declared in compose.yaml):
# docker compose --profile build-base build finlytic-playwright-base
#
# Run this ONLY when the Microsoft.Playwright NuGet version changes
# (see FinlyticCore/FinlyticCore.csproj) — otherwise the cached layer is reused.
#
# Usage:
# .\rebuild-playwright-base.ps1
@@ -34,6 +45,7 @@ docker build `
if ($LASTEXITCODE -eq 0) {
Write-Host ""
Write-Host "✅ Base image '$ImageName' built and cached locally." -ForegroundColor Green
Write-Host " Consumers: FinlyticNews, FinlyticFundamentals" -ForegroundColor Green
Write-Host " You can now run 'docker compose build' as usual." -ForegroundColor Green
Write-Host ""