Deploying an asp.net blazor server app via docker container for local corporate intranet?

I've been playing around with Docker and really like the idea of containerized apps. What are some ways to run/host docker containers for local intranet use only that doesn't have any code leaving the corp intranet? e.g. not pushing the image to some cloud repository. And does visual studio support publishing a docker image like this, from dev machine to prod server, or do I need a different process?
5 Replies
Sehra
Sehra3w ago
set up your own registry and use that for orchestration, you can use for example swarm or kubernetes
CaffeineTremors
CaffeineTremorsOP3w ago
okay, "orchestration", does that apply even if i'm only developing a single containerized app and hosting it on one server? not everyone is hyperscaling everything...
Sehra
Sehra3w ago
orchestration can be pretty small, more of the kind you want one instance and restart if it crashes but sure, you can start it manually and restart it if needed as example at work i use ECR as registry, and ECS to say i want a service running, here are the settings
jcotton42
jcotton423w ago
Also applies if you have something like a database running alongside. (That isn’t sqlite)
CaffeineTremors
CaffeineTremorsOP3w ago
ah okay, makes sense i guess the number of containers could start to grow as you add more services

Did you find this page helpful?