Vous ne pouvez pas sélectionner plus de 25 sujets Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.
Christophe Brachet db7c1a8abe First commit il y a 4 mois
TestApiDocker First commit il y a 4 mois
docker-dotnetcore-api First commit il y a 4 mois
README.md First commit il y a 4 mois

README.md

Testcontainers

Etape 1 - Installer Docker

Le plus simple sur Linux c’est d’installer Docker Desktop

Etape 2- Création de l’api Dotnet

dotnet new webapi -n docker-dotnetcore-api

Etape 3 – Démarrer l’application

cd docker-dotnetcore-api
dotnet run

L’application est accessible depuis l’url

Etape 4-Créer l’image Docker

docker build -t ecolocale/my-api .