/website$ ecs-cli compose service up INFO[0001] Using ECS task definition TaskDefinition=ecscompose-website:5 INFO[0001] ECS Service is already running desiredCount=1 serviceName=ecscompose-service-website INFO[0001] ECS Service has reached a stable state desiredCount=1 runningCount=1 serviceName=ecscompose-service-website ~/website$ ecs-cli compose service help NAME: ecs-cli compose service - Manage Amazon ECS services with docker-compose-style commands on an ECS cluster. USAGE: ecs-cli compose service [global options] command [command options] [arguments...] VERSION: 0.4.1 (e27df48) COMMANDS: create Creates an ECS service from your compose file. The service is created with a desired count of 0, so no containers are started by this c ommand. Note that we do not recommend using plain text environment variables for sensitive information, such as credential data. start Starts one copy of each of the containers on the created ECS service. This command updates the desired count of the service to 1. up Creates an ECS service from your compose file (if it does not already exist) and runs one instance of that task on your cluster (a comb ination of create and start). This command updates the desired count of the service to 1. ps, list Lists all the containers in your cluster that belong to the service created with the compose project. scale ecs-cli compose service scale [count] - scales the desired count of the service to the specified count stop Stops the running tasks that belong to the service created with the compose project. This command updates the desired count of the serv ice to 0. rm, delete, down Updates the desired count of the service to 0 and then deletes the service. help, h Shows a list of commands or help for one command GLOBAL OPTIONS: --help, -h show help ~/website$ ecs-cli compose service down INFO[0001] Updated ECS service successfully desiredCount=0 serviceName=ecscompose-service-website INFO[0001] Describe ECS Service status desiredCount=0 runningCount=1 serviceName=ecscompose-service-website INFO[0016] ECS Service has reached a stable state desiredCount=0 runningCount=0 serviceName=ecscompose-service-website INFO[0017] Deleted ECS service service=ecscompose-service-website INFO[0017] ECS Service has reached a stable state desiredCount=0 runningCount=0 serviceName=ecscompose-service-website ~/website$ ecs-cli compose service up INFO[0001] Using ECS task definition TaskDefinition=ecscompose-website:5 INFO[0001] Created an ECS service service=ecscompose-service-website taskDefinition=ecscompose-website:5 INFO[0001] Updated ECS service successfully desiredCount=1 serviceName=ecscompose-service-website INFO[0002] Describe ECS Service status desiredCount=1 runningCount=0 serviceName=ecscompose-service-website INFO[0017] ECS Service has reached a stable state desiredCount=1 runningCount=1 serviceName=ecscompose-service-website ~/website$