Reputation: 462
I want to run in separeted dockers R processes, so if a docker fails, the others continues runing.
I dont know if I have to use docker-compose to do this, or maybe create differnt docker files and run all of them
Which is the better way to do this?
Thanks
Upvotes: 0
Views: 25
Reputation: 3254
The best and easiest way to do this would be with kubernetes or docker swarm, both built on top of docker
Upvotes: 1