Remove deprecated option --parallel

docker-compose 1.21.0 deprecated the flag as it is now the default
behaviour. This change removes the flag and therefore the deprecation
warning from the logs

Signed-off-by: Knut Ahlers <knut@ahlers.me>
This commit is contained in:
Knut Ahlers 2018-04-12 23:35:36 +02:00
parent e18f64af71
commit 5edb7e5e38
Signed by: luzifer
GPG key ID: DC2729FDD34BE99E

View file

@ -64,12 +64,12 @@
Type=oneshot
RemainAfterExit=yes
ExecStartPre=/usr/local/bin/docker-compose pull --quiet --parallel --ignore-pull-failures
ExecStartPre=/usr/local/bin/docker-compose pull --quiet --ignore-pull-failures
ExecStart=/usr/local/bin/docker-compose up -d --remove-orphans
ExecStop=/usr/local/bin/docker-compose down
ExecReload=/usr/local/bin/docker-compose pull --quiet --parallel --ignore-pull-failures
ExecReload=/usr/local/bin/docker-compose pull --quiet --ignore-pull-failures
ExecReload=/usr/local/bin/docker-compose up -d --remove-orphans
[Install]