Sha256: 7323768172d4676fcc35c6469906f6360576747336978f96f15340242256db4d
Contents?: true
Size: 1 KB
Versions: 7
Compression:
Stored size: 1 KB
Contents
--- title: Run in Pieces nav_order: 45 --- The `ufo ship` command goes through a few stages: 1. building the docker image 2. registering the task defiintions 2. updating the ECS service. The CLI exposes many of these steps as separate commands. Here is now you would be able to run each of the steps in pieces. Build the docker image first. ufo docker build ufo docker push # pushes last built image to a registry Build the task definitions. ufo tasks build # generates task definition json files to .ufo/output ufo tasks register # registers all genreated task definitions .ufo/output to ECS Update the service with the task definitions in `.ufo/output` untouched. ufo deploy demo-web Note if you use the `ufo deploy` you should ensure that you have already pushed the docker image to your docker registry. Or else the task will not be able to spin up because the docker image does not exist. This is one of the reasons it is recommended that you use `ufo ship`. {% include prev_next.md %}
Version data entries
7 entries across 7 versions & 1 rubygems