From d36bfd2b977d0763f8b505e6fc807a28eccab3c9 Mon Sep 17 00:00:00 2001 From: Anatolii Grynchuk Date: Sat, 2 May 2026 02:31:05 +0300 Subject: [PATCH] fix: pin Seq to 2024 image, add no-auth flag, restore dedicated Seq service MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - datalust/seq:latest (2025.x) requires mandatory auth — pin to :2024 - Add SEQ_FIRSTRUN_NOAUTHENTICATION=true to match ItemTracker pattern - Seq UI on port 5342, api/worker point to internal http://seq - Restore notification_seq volume Ref: IT-628 Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com> --- .../environments/docker-compose.Development.yml | 17 ++++++++++++++--- 1 file changed, 14 insertions(+), 3 deletions(-) diff --git a/docker/environments/docker-compose.Development.yml b/docker/environments/docker-compose.Development.yml index 30c0516..2b5ccbf 100644 --- a/docker/environments/docker-compose.Development.yml +++ b/docker/environments/docker-compose.Development.yml @@ -3,7 +3,7 @@ services: environment: - ASPNETCORE_ENVIRONMENT=Development - App__ConnectionString=Host=db;Port=5432;Database=notification_service;Username=postgres;Password=postgres - - Serilog__WriteTo__1__Args__serverUrl=http://host.docker.internal:5341 + - Serilog__WriteTo__1__Args__serverUrl=http://seq ports: - "5200:8080" @@ -11,7 +11,7 @@ services: environment: - DOTNET_ENVIRONMENT=Development - App__ConnectionString=Host=db;Port=5432;Database=notification_service;Username=postgres;Password=postgres - - Serilog__WriteTo__1__Args__serverUrl=http://host.docker.internal:5341 + - Serilog__WriteTo__1__Args__serverUrl=http://seq db: image: postgres:17 @@ -24,5 +24,16 @@ services: volumes: - notification_db:/var/lib/postgresql/data + seq: + image: datalust/seq:2024 + environment: + ACCEPT_EULA: "Y" + SEQ_FIRSTRUN_NOAUTHENTICATION: "true" + ports: + - "5342:80" + volumes: + - notification_seq:/data + volumes: - notification_db: \ No newline at end of file + notification_db: + notification_seq: \ No newline at end of file