mirror of
https://github.com/XFox111/PhonebookService.git
synced 2026-04-22 06:29:55 +03:00
590 B
590 B
PhonebookService
A small project I've done as job interview task
It is based on Domain-driven Design principles (aka Clean architecture) and uses Docker for containerization
Build and run
- Clone the repository
- Open terminal in the root folder
- Run
dotnet buildanddotnet run
Make sure you have .NET 6 SDK installed
Building a Docker image
- Clone the repository
- Open terminal in the root folder
- Run
docker build -t phonebook-service .to build the image - Run
docker run -p 8080:80 --name phonebook-service-container phonebook-serviceto run the image