I already have a build server from which I create a docker image for the application, and then put it in the cloud storage. This is not an image that can be publicly published in the docker index. How can I run this docker image application in deis?
Deis is designed to create your docker image from your git repository via buildpack or Dockerfile (although I cannot find instructions on how to use Dockerfile instead of buildpack). This can be considered an obsolete integration problem. However, the current configuration of starting the build service in the application cluster is not suitable for me, because I want my build server to be much more powerful than my application server. Ideally, my build server will spin up on demand, although now I'm not worried about that.
source
share