TritonDataCenter / containerpilot

A service for autodiscovery and configuration of applications running in containers
Mozilla Public License 2.0
1.12k stars 136 forks source link

Documentation Update: docker-compose --scale "change" #582

Open lloydie opened 5 years ago

lloydie commented 5 years ago

currently:

docker-compose scale hello=2 world=3

returns cli warning.

i believe the correct cmd is

docker-compose up --scale hello=2 --scale world=2 -d

cheers