I am fairly new to Docker and I am trying to wrap my head around this, and before I go too far down this rabbit hole, I figure I’d ask to see if it is possible to do in the first place.
I have Docker running on my Windows machine. I have set up a simple C# console app using .NET and have set up Docker containerization support in the project.
I now have a Dockerfile and a docker-compose.yml file added. It appears in the Dockerfile, that I can add dependencies, and in the docker-compose I can add a dependency for my console app to depend on another docker container, therefore setting up the corresponding dependency chain and allow the two pieces to talk to one another?
Has anyone went about setting this up so that it can install the ODM docker file as part of a dependency of the console application so that I can call the ODM API via command line? If so, are there any resources that you can point me to in order to try and get this set up in such a manner?
Please excuse my ignorance on the subject and thanks in advance!