-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathdocker-compose.override.yml
More file actions
46 lines (42 loc) · 1.43 KB
/
docker-compose.override.yml
File metadata and controls
46 lines (42 loc) · 1.43 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
services:
talentmanagementapi.webapi:
environment:
- ASPNETCORE_ENVIRONMENT=Development
- Sts__IgnoreCertificateErrors=true
- ASPNETCORE_URLS=https://+:8443;http://+:8080
- ASPNETCORE_Kestrel__Certificates__Default__Path=/https/talentmanagement-dev.pfx
- ASPNETCORE_Kestrel__Certificates__Default__Password=TalentManagement!Pfx2026#
- UseInMemoryDatabase=false
- FeatureManagement__UseInMemoryDatabase=false
- FeatureManagement__VectorSearchEnabled=true
- ConnectionStrings__DefaultConnection=Server=sqlserver,1433;Database=TalentManagementAPIDb;User Id=sa;Password=Your_password123;TrustServerCertificate=True;Encrypt=False
- Ollama__BaseUrl=http://ollama:11434
ports:
- "44378:8443"
extra_hosts:
- "sts.skoruba.local:host-gateway"
depends_on:
- sqlserver
- ollama
volumes:
- ${USERPROFILE}/.aspnet/https:/https:ro
- ${APPDATA}/Microsoft/UserSecrets:/home/app/.microsoft/usersecrets:ro
- ${APPDATA}/Microsoft/UserSecrets:/root/.microsoft/usersecrets:ro
sqlserver:
image: mcr.microsoft.com/mssql/server:2025-latest
environment:
- ACCEPT_EULA=Y
- SA_PASSWORD=Your_password123
ports:
- "1433"
volumes:
- sqlserver-data:/var/opt/mssql
ollama:
image: ollama/ollama:latest
ports:
- "11434:11434"
volumes:
- ollama-data:/root/.ollama
volumes:
sqlserver-data:
ollama-data: