Black Obsidian Ответов: 0

Как подключить контейнеризированный веб-API с помощью ASP.NET ядро 3.1 с контейнером SQL server 2019 с использованием docker compose


Мне нужна помощь пожалуйста,
как подключить докеризованный api (model.cs с помощью scaffolded controller asp.net core 3.1 и ef core) с контейнером sql server 2019? проблема в том, что когда я добавляю поддержку docker compose с помощью инструмента, я не знаю, как описать связанный контейнер docker для sql server.
Может ли кто-нибудь помочь мне с этим, пожалуйста?
Огромное спасибо за расширенный

Что я уже пробовал:

i just opened the api project template in VisualStudio 2019
and deleted the default Temperature model and the Temperature default controller 
then created new folder named models
and inside it new model.cs 
then scaffolded an API controller with actions
then made the right adjustment to connect it with the sql server container 
then i containerized the API it self 
then then added docker compose 
then the tool in VS19 will see only the web API service
i need to add SQL server Infos in the docker compose .yaml file and connect the two containers but i tried everything and nothing works!!
i was able to connect the api to the sql server container when the api was not dockerized using just the right connection string in appsettings.json but i need to do it while each has a container

0 Ответов