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