I have the following challenge.
After switching from PHP to C#, a project has been created that currently requires an IIS. This is started from Visual Studio and runs on a localhost.
I would like to do this with dockr and if I googled it right, it is possible with a windows container. However, I only have a Linux system with docker and there is no way there will be anything else. Docker-Desktop is available, but I don't want to use it, because other employees should be able to access the system.
So is it possible to get an IIS running in a docker-linux, and if so how would that look like.
Of course I would prefer to be able to work with docker-compose.
Any ideas?