What is the best way to automate the deployment of a Docker image in a CI environment?
After creating a simple web project using Travis CI and using Dockerfile
Docker to create the corresponding image, is there any way to automatically cause this image to be deployed to the cloud provider?
Currently, the Dockerfile pulls out the base image to the Travis build machine and creates the image based on the instructions in the Docker file. At this point, if the build is successful, I can click it on the Docker hub, although I do not need to save this image in the Docker hub, which I assume is deploying the successfully created Docker image to the cloud provider (IE. DigitalOcean, Linode, or AWS ) and start / start image.
source
share