You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
Christophe Brachet db7c1a8abe First commit 3 months ago
TestApiDocker First commit 3 months ago
docker-dotnetcore-api First commit 3 months ago
README.md First commit 3 months ago

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 .