summaryrefslogtreecommitdiff
path: root/compose/parallel.py
diff options
context:
space:
mode:
authorJoffrey F <joffrey@docker.com>2017-04-17 19:03:56 -0700
committerJoffrey F <joffrey@docker.com>2017-04-17 19:51:48 -0700
commit78ee6123330e9ae71b6ef3d82035d2d87b00dca7 (patch)
tree48a54aeecec8a5fb4bc4dc08cabd57781cc9b99d /compose/parallel.py
parentbaf457c78c79990ac8d0b4124fe33d55e2168272 (diff)
Implement --scale option on up command, allow scale config in v2.2 format
docker-compose scale modified to reuse code between up and scale Signed-off-by: Joffrey F <joffrey@docker.com>
Diffstat (limited to 'compose/parallel.py')
-rw-r--r--compose/parallel.py4
1 files changed, 0 insertions, 4 deletions
diff --git a/compose/parallel.py b/compose/parallel.py
index fde723f3..34fef71d 100644
--- a/compose/parallel.py
+++ b/compose/parallel.py
@@ -260,10 +260,6 @@ def parallel_remove(containers, options):
parallel_operation(stopped_containers, 'remove', options, 'Removing')
-def parallel_start(containers, options):
- parallel_operation(containers, 'start', options, 'Starting')
-
-
def parallel_pause(containers, options):
parallel_operation(containers, 'pause', options, 'Pausing')