Changes
Build and Push Docker Images / build (push) Failing after 1s

This commit is contained in:
2026-05-07 14:45:19 +03:00
parent 5f647b4561
commit ae1db5e9a7
3 changed files with 39 additions and 15 deletions
+30
View File
@@ -31,6 +31,36 @@ Ai__Ollama__ChatModel=llama2
Ai__Ollama__EmbeddingModel=embedding-model Ai__Ollama__EmbeddingModel=embedding-model
Ai__Ollama__TimeoutSeconds=30 Ai__Ollama__TimeoutSeconds=30
# Database (shared) - maps to Database:Host etc. used by apps
Database__Host=sqlserver
Database__Port=1433
Database__Name=MyAiDb
Database__User=sa
Database__Password=
Database__TrustServerCertificate=true
# Internal API protection
InternalApi__ApiKey=
InternalApi__RequireApiKey=false
# RAG settings
Rag__MaxFileSizeMb=8
Rag__ChunkSize=900
Rag__ChunkOverlap=150
Rag__MaxTextChars=60000
Rag__DefaultTopK=20
Rag__MaxTopK=50
Rag__ClassifyWithAi=false
# Matcher settings (cv-matcher)
Matcher__TopK=10
Matcher__DeepScoreTopN=5
Matcher__MaxJobTextChars=60000
# RagApi used by cv-matcher
RagApi__BaseUrl=http://rag-api:8082
RagApi__InternalApiKey=
# Captcha # Captcha
Captcha__Provider=Recaptcha Captcha__Provider=Recaptcha
Captcha__SecretKey= Captcha__SecretKey=
+9 -6
View File
@@ -10,9 +10,15 @@
</PropertyGroup> </PropertyGroup>
<ItemGroup> <ItemGroup>
<None Include=".env" /> <None Include=".env" />
<None Include=".env.production" /> <None Include=".env.production">
<None Include=".env.staging" /> <DependentUpon>.env</DependentUpon>
<None Include=".env.template" /> </None>
<None Include=".env.staging">
<DependentUpon>.env</DependentUpon>
</None>
<None Include=".env.template">
<DependentUpon>.env</DependentUpon>
</None>
<None Include="docker-compose.yml" /> <None Include="docker-compose.yml" />
<None Include="docker-compose.staging.yml"> <None Include="docker-compose.staging.yml">
<DependentUpon>docker-compose.yml</DependentUpon> <DependentUpon>docker-compose.yml</DependentUpon>
@@ -20,8 +26,5 @@
<None Include="docker-compose.production.yml"> <None Include="docker-compose.production.yml">
<DependentUpon>docker-compose.yml</DependentUpon> <DependentUpon>docker-compose.yml</DependentUpon>
</None> </None>
<None Include="docker-compose.override.yml">
<DependentUpon>docker-compose.yml</DependentUpon>
</None>
</ItemGroup> </ItemGroup>
</Project> </Project>
@@ -1,9 +0,0 @@
version: "3.8"
services:
web:
# optional: mount source for live edit during development
# volumes:
# - ./web:/src/web:cached
environment:
- DOTNET_ENVIRONMENT=Development