2020-11-23 09:23:05 +01:00
|
|
|
version: '3.4'
|
|
|
|
|
|
|
|
services:
|
|
|
|
db:
|
2020-11-23 10:50:10 +01:00
|
|
|
image: "mcr.microsoft.com/mssql/server:2019-latest"
|
2020-11-23 09:23:05 +01:00
|
|
|
environment:
|
|
|
|
- ACCEPT_EULA=Y
|
2020-11-23 10:50:10 +01:00
|
|
|
- SA_PASSWORD=RPSsql12345
|
2020-11-23 09:23:05 +01:00
|
|
|
|
|
|
|
birdmap.api:
|
|
|
|
image: ${DOCKER_REGISTRY-}birdmapapi
|
|
|
|
ports:
|
2020-11-23 13:31:09 +01:00
|
|
|
- "8000:80"
|
|
|
|
- "8001:443"
|
|
|
|
volumes:
|
|
|
|
- ${APPDATA}/Microsoft/UserSecrets:/root/.microsoft/usersecrets:ro
|
|
|
|
- ${APPDATA}/ASP.NET/Https:/root/.aspnet/https:ro
|
2020-11-23 09:23:05 +01:00
|
|
|
build:
|
|
|
|
context: .
|
|
|
|
dockerfile: Birdmap.API/Dockerfile
|
|
|
|
depends_on:
|
|
|
|
- db
|
|
|
|
environment:
|
2020-11-25 12:16:14 +01:00
|
|
|
- ASPNETCORE_ENVIRONMENT=Docker
|
2020-11-23 13:31:09 +01:00
|
|
|
- ASPNETCORE_URLS=https://+;http://+
|
|
|
|
- ASPNETCORE_HTTPS_PORT=8001
|
2020-11-25 12:16:14 +01:00
|
|
|
- Birdmap_Kestrel__Certificates__Default__Password=certpass123
|
|
|
|
- Birdmap_Kestrel__Certificates__Default__Path=/root/.aspnet/https/aspnetapp.pfx
|
2020-11-26 10:01:47 +01:00
|
|
|
- Birdmap_Secret=7gz;]=bQe}n#3~RwC+Y<SrjoE:sHwO
|
2020-11-23 10:50:10 +01:00
|
|
|
- Birdmap_LocalDbConnectionString=Data Source=db;Initial Catalog=birdmap;User=sa;Password=RPSsql12345
|
|
|
|
- Birdmap_Defaults__Users__0__Name=admin
|
|
|
|
- Birdmap_Defaults__Users__0__Password=pass
|
|
|
|
- Birdmap_Defaults__Users__0__Role=Admin
|
|
|
|
- Birdmap_Defaults__Users__1__Name=user
|
|
|
|
- Birdmap_Defaults__Users__1__Password=pass
|
|
|
|
- Birdmap_Defaults__Users__1__Role=User
|
2020-11-26 10:01:47 +01:00
|
|
|
- Birdmap_Defaults__Services__Local-Database=https://localhost:8001/health
|
|
|
|
- Birdmap_Defaults__Services__KMLabz-Service=https://birb.k8s.kmlabz.com/devices
|
2020-11-23 10:50:10 +01:00
|
|
|
- Birdmap_UseDummyServices=true
|
|
|
|
- Birdmap_ServicesBaseUrl=https://birb.k8s.kmlabz.com/
|
2021-01-16 15:23:10 +01:00
|
|
|
- Birdmap_UseRabbitMq=true
|
2020-11-23 10:50:10 +01:00
|
|
|
- Birdmap_Mqtt__BrokerHostSettings__Host=localhost
|
|
|
|
- Birdmap_Mqtt__BrokerHostSettings__Port=1883
|
|
|
|
- Birdmap_Mqtt__ClientSettings__Id=ASP.NET Core client
|
|
|
|
- Birdmap_Mqtt__ClientSettings__Username=username
|
|
|
|
- Birdmap_Mqtt__ClientSettings__Password=password
|
|
|
|
- Birdmap_Mqtt__ClientSettings__Topic=devices/output
|